# 说明
资源加载装饰器 如果资源正在加载 等待资源加载完成 如果加载完成 直接执行
# 使用方法
<template>
<div></div>
</template>
<script>
import { loadResource } from '@/decorator'
export default {
data() {
return {
VideoPlaza_typeList: []
}
},
@loadResource('uni.webview.1.5.2.js')
mounted() {
this.init()
},
methods: {
init() {
//
}
}
}
</script>