Demo1.vue 311 B

123456789101112131415161718192021
  1. <template>
  2. <div class="demo1">
  3. 组件一
  4. <button @click="handlerMain">获取内容</button>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. methods:{
  10. handlerMain() {
  11. let part1 = this.$emit("aa");
  12. // console.log(part1);
  13. }
  14. }
  15. }
  16. </script>
  17. <style>
  18. </style>