index.vue 588 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <!-- 关注公众号 -->
  3. <!-- #ifdef MP-WEIXIN -->
  4. <view class="diy-officialAccount">
  5. <official-account></official-account>
  6. </view>
  7. <!-- #endif -->
  8. </template>
  9. <script>
  10. import mixin from '../mixin'
  11. export default {
  12. /**
  13. * 组件的属性列表
  14. * 用于组件自定义设置
  15. */
  16. props: {
  17. itemIndex: String
  18. },
  19. mixins: [mixin],
  20. /**
  21. * 组件的方法列表
  22. * 更新属性和数据的方法与更新页面数据的方法类似
  23. */
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. </style>