1
0
mirror of https://github.com/actix/examples synced 2025-06-27 09:29:02 +02:00

update vue to v3

This commit is contained in:
Rob Ede
2023-07-18 22:54:35 +01:00
parent 60ecab2732
commit 9b2e24b1b3
9 changed files with 1189 additions and 30 deletions

View File

@ -1,6 +1,6 @@
import Vue from 'vue'
import App from './app'
// import './assets/main.css'
new Vue({
render: h => h(App)
}).$mount('#app')
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')