en-list.vue 282 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="box">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. name: 'en-list',
  8. props: {
  9. },
  10. data() {
  11. return {
  12. }
  13. },
  14. components: {
  15. },
  16. mounted() {
  17. },
  18. watch: {
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. </style>