1234567891011121314151617181920212223 |
- <template>
- <div>hhahahahahh</div>
- <h2>{{ number }}</h2>
- </template>
- <script lang="ts">
- import { defineComponent } from "vue";
- export default defineComponent({
- //新的option 所有的组合API函数都在这里面使用 只在初始化时候执行一次
- //setup是组合api第一个要使用的函数
- setup() {
- console.log('i setup')
- const number = 10
- return {
- number
- };
- },
- });
- </script>
- <style scoped>
- </style>
|