1
0
forked from PGL/Clyde

adding the dependance

This commit is contained in:
2024-03-30 13:10:11 +01:00
parent c1b2742a8f
commit 91ee3adbcd
4 changed files with 51 additions and 2 deletions

View File

@ -4,5 +4,8 @@ import 'https://kit.fontawesome.com/fb3bbd0a95.js'
import { createApp } from 'vue'
import App from './App.vue'
import CanvasJSChart from '@canvasjs/vue-charts';
createApp(App).mount('#app')
const app = createApp(App);
app.use(CanvasJSChart);
app.mount('#app');