mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 21:50:28 +08:00
16 lines
256 B
JavaScript
16 lines
256 B
JavaScript
Vue.component("page-box", {
|
|
data: function () {
|
|
return {
|
|
page: ""
|
|
}
|
|
},
|
|
created: function () {
|
|
let that = this;
|
|
setTimeout(function () {
|
|
that.page = Tea.Vue.page;
|
|
})
|
|
},
|
|
template: `<div>
|
|
<div class="page" v-html="page"></div>
|
|
</div>`
|
|
}) |