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/Building.cshtml

25 lines
731 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/areas/default/devices.vue'))
connect();
console.log('app start');
}
});
</script>
}
}