33 lines
457 B
Vue
33 lines
457 B
Vue
|
<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>
|