27 lines
470 B
Vue
27 lines
470 B
Vue
|
<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>
|