1.vue文件
<template>
  <div class="alipayOrWxpay-wrapper">
  </div>
</template>

<script>
import alipayOrWxpay from './alipayOrWxpay'
export default {
  ...alipayOrWxpay
}
</script>

2.alipayOrWxpay.js

export default {
  data () {
    return {
      // 定义data
    }
  }
// 这里跟之前没有抽离是一毛一样,只是单独成立了一个文件,之前怎么写,现在怎么写。
}

 

 

相关文章:

  • 2021-08-06
  • 2022-01-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案