• html 部分:
<div id="sample">
</div>
  • js 部分(将js代码放在 body 的 onload事件中: <body onload="init()">):
function init() {
  window.vue = new Vue({
el: '#sample',
data: function () {
return {
}
},
methods: {
}
})
  window.vue.$message('message')
}
05-11 10:58