You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/WebMVC/wwwroot/js/start.js

10 lines
231 B

const app = new Vue({
el: '#app',
router,
store: store,
mounted: function () {
//router.push(config.file('components/views/home/index.html'))
connect();
console.log('app start');
}
});