mirror of
https://github.com/actix/examples
synced 2025-04-03 00:45:31 +02:00
7 lines
97 B
JavaScript
7 lines
97 B
JavaScript
import Vue from 'vue'
|
|
import App from './app'
|
|
|
|
new Vue({
|
|
render: h => h(App)
|
|
}).$mount('#app')
|