1
0
mirror of https://github.com/actix/examples synced 2025-08-21 14:25:37 +02:00

Update main.js

This commit is contained in:
krircc
2019-03-30 09:46:41 +08:00
committed by GitHub
parent ffec58f883
commit a3bef842e7

View File

@@ -2,10 +2,5 @@ import Vue from 'vue'
import App from './app' import App from './app'
new Vue({ new Vue({
el: '#app',
render: h => h(App) render: h => h(App)
}) }).$mount('#app')
if (module.hot) {
module.hot.accept();
}