issue-13858-item.uvue 270 B

123456789101112131415161718192021222324
  1. <template>
  2. <view>bug</view>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'Item',
  7. data() {
  8. return {
  9. }
  10. },
  11. emits: ['itemMounted'],
  12. methods: {
  13. },
  14. mounted() {
  15. this.$emit('itemMounted')
  16. }
  17. }
  18. </script>
  19. <style>
  20. </style>