mirror of
https://github.com/actix/examples
synced 2025-03-11 15:52:58 +01: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')
|