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/wwwroot/temp/vue.html

24 lines
487 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<div id="app">
<component v-bind:'test'></component>
</div>
<script src="/lib/vue/vue.min.js"></script>
<script>
new Vue({
el: '#app',
created: function () {
console.log(this);
},
mounted: function () {
console.log(this);
},
});
</script>
</body>
</html>