broadcast.vue 288 B

1234567891011121314151617
  1. <template>
  2. </template>
  3. <script>
  4. export default {
  5. data() {
  6. },
  7. onShow() {
  8. const subnvue = uni.getSubNVueById('drawer') // 获取nvue
  9. subnvue.show() // 显示nvue
  10. },
  11. methods: {
  12. }
  13. };
  14. </script>