1
0
mirror of https://github.com/actix/examples synced 2025-01-23 14:24:35 +01:00

7 lines
97 B
JavaScript
Raw Normal View History

import Vue from 'vue'
import App from './app'
new Vue({
render: h => h(App)
2019-03-30 09:46:41 +08:00
}).$mount('#app')