demo.vue 223 B

1234567891011121314151617181920212223
  1. <template>
  2. <view>
  3. 您好
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'index',
  9. data() {
  10. return {
  11. }
  12. },
  13. computed: {
  14. },
  15. onLoad(options) {
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. </style>