var vue = new Vue({
el: '#app',
data() {
return {
jj:'Hello'
}
},
computed: {},
watch: {
},
created: function () {
},
mounted() { },
destroyed() {
},
methods: { }
});
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8"/>
<title>简单的模板</title>
<!-- <script type="text/javascript" src="/main/common/vue-common.js"></script> -->
</head>
<body>
<div id="app">
{{jj}}
</div>
</body>
</html>