pop-cart.vue 272 B

1234567891011121314151617181920212223
  1. <template>
  2. <view>
  3. <button @click="popC">pp按钮</button>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: "pop-cart",
  9. data() {
  10. return {};
  11. },
  12. methods: {
  13. popC() {
  14. this.$emit("popCart");
  15. }
  16. }
  17. }
  18. </script>
  19. <style lang="scss">
  20. </style>