<template> <view>bug</view> </template> <script> export default { name: 'Item', data() { return { } }, emits: ['itemMounted'], methods: { }, mounted() { this.$emit('itemMounted') } } </script> <style> </style>