18 lines
303 B
JavaScript
18 lines
303 B
JavaScript
Vue.component("page-box", {
|
|
data: function () {
|
|
return {
|
|
page: ""
|
|
}
|
|
},
|
|
created: function () {
|
|
let that = this;
|
|
setTimeout(function () {
|
|
if (Tea && Tea.Vue && Tea.Vue.page) {
|
|
that.page = Tea.Vue.page;
|
|
}
|
|
})
|
|
},
|
|
template: `<div>
|
|
<div class="page" v-html="page"></div>
|
|
</div>`
|
|
}) |