mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 06:10:26 +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>`
|
||
|
|
})
|