1
0
mirror of https://github.com/actix/examples synced 2025-03-05 22:07:24 +01:00
2018-04-13 09:18:42 +08:00

11 lines
139 B
JavaScript

import Vue from 'vue'
import App from './app'
new Vue({
el: '#app',
render: h => h(App)
})
if (module.hot) {
module.hot.accept();
}