Hastic standalone https://hastic.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
384 B

<template>
<div id="chart">
asdsa
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
// TODO: place chartwerk
// TODO: fetch data from API
// TODO: set height
export default defineComponent({
name: 'Graph',
props: {},
});
</script>
<style scoped lang="scss">
#chart {
margin: auto;
width: 80%;
height: 50%;
background: red;
}
</style>