examples: move current examples into examples/vite

This commit is contained in:
bcakmakoglu
2022-06-03 19:32:46 +02:00
committed by Braks
parent c6bda81c5e
commit 8dd7c79700
68 changed files with 94 additions and 91 deletions
+10
View File
@@ -0,0 +1,10 @@
import { createApp } from 'vue'
import './index.css'
import App from './App.vue'
import { router } from './router'
const app = createApp(App)
app.config.performance = true
app.use(router)
app.mount('#root')