前端转vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.vue 233B

1234567891011121314151617
  1. <template>
  2. <section class="${class}">
  3. </section>
  4. </template>
  5. <script lang="ts" name="${class}">
  6. import { ref, reactive } from 'vue'
  7. import * as api from './service'
  8. </script>
  9. <style lang="less" scoped>
  10. .${class}{
  11. }
  12. </style>