index.vue 278 B

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