使用template new Vue({ template: '<div>{{ hi }}</div>' }) // 使用render 方法new Vue({ render (h) { return h('div', this.hi) } }) ...
確定! 回上一頁