lihaiCenter/pages/index/index.vue

33 lines
457 B
Vue
Raw Normal View History

2023-10-08 14:17:20 +08:00
<template>
<view class="content">
<view>
<button @click="test">测试</button>
</view>
</view>
</template>
<script>
import mp from "@/utils/uniMP.js"
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
test() {
mp.loadMP({
id: '__UNI__3A527D1',
file: '/static/wgt/__UNI__3A527D1.wgt'
})
}
}
}
</script>
<style lang="scss">
</style>