shop-applet/pages/test/index.vue

27 lines
470 B
Vue
Raw Normal View History

2024-04-27 18:16:11 +08:00
<template>
<view class="" style="width: 750rpx;height: 100vh;background-color: pink;">
我已经吐了傻逼是的
<button @click="tests">anniu1</button>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
tests() {
const subNVue = uni.getSubNVueById('concat')
subNVue.show('slide-in-left', 200, () => {
console.log('subNVue 原生子窗体显示成功');
})
}
}
}
</script>
<style>
</style>