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/Platform/Views/Home/Index.cshtml

25 lines
715 B

@{
HideBread = true;
<router-view></router-view>
@section scripts{
<script src="js/config.js"></script>
<script>
config.razor = true;
</script>
<script src="js/app.js"></script>
<script src="js/axios.js"></script>
<script src="js/form.js"></script>
<script>
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');
}
});
</script>
}
}