App.vue 449 B

1234567891011121314151617181920212223
  1. <template>
  2. <div>hhahahahahh</div>
  3. <h2>{{ number }}</h2>
  4. </template>
  5. <script lang="ts">
  6. import { defineComponent } from "vue";
  7. export default defineComponent({
  8. //新的option 所有的组合API函数都在这里面使用 只在初始化时候执行一次
  9. //setup是组合api第一个要使用的函数
  10. setup() {
  11. console.log('i setup')
  12. const number = 10
  13. return {
  14. number
  15. };
  16. },
  17. });
  18. </script>
  19. <style scoped>
  20. </style>