1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-07-16 01:54:46 +02:00
Files
actix-extras/examples/web-cors/frontend/src/main.js
2018-01-26 19:52:20 -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();
}