primevue-mirror/pages/chart/index.vue

16 lines
192 B
Vue
Executable File

<template>
<div>
<ChartDoc />
</div>
</template>
<script>
import ChartDoc from './ChartDoc';
export default {
components: {
ChartDoc: ChartDoc
}
};
</script>