Files
EdgeAdmin/web/public/js/components/common/page-box.js

16 lines
256 B
JavaScript
Raw Normal View History

2020-09-06 16:19:34 +08:00
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>`
})