Blame view

src/components/fee/simplifyCallableDemo.vue 400 Bytes
b25b036d   wuxw   v1.9 优化日期
1
  <template>
24d3590f   wuxw   房屋收费页面开发完成
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
    <simplify-callable ref="simplifyCallable"></simplify-callable>
  </template>
  
  <script>
  import SimplifyCallable from './simplifyCallable'
  
  export default {
    name: 'SimplifyCallableDemo',
    components: {
      SimplifyCallable
    },
    mounted() {
      this.$refs.simplifyCallable.$emit('switch', {
        roomId: '123',
        roomName: 'Test Room',
        ownerId: '456'
      })
    }
  }
  </script>