15 lines
192 B
Vue
15 lines
192 B
Vue
<template>
|
|
<div>
|
|
<h2>Test</h2>
|
|
<ColumnChart/>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ColumnChart from '~/components/common/ColumnChart';
|
|
|
|
export default{
|
|
components:{
|
|
ColumnChart
|
|
}
|
|
}
|
|
</script> |