Comp2.uvue 248 B

1234567891011121314151617181920
  1. <template>
  2. <view :id="compId" ref="uxToastItemRef">
  3. <text>hello</text>
  4. <slot></slot>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. compId: 'comp2-id'
  12. }
  13. }
  14. }
  15. </script>
  16. <style>
  17. </style>