Ts+Vue3+setup语法糖

239 阅读1分钟

1. ref

import {Ref,ref} from "vue"

const test1 = ref<string>("1");
const test2: Ref<string> = ref("2");

const test3 = ref<string | null>(null);
const test4: Ref<string | null> = ref("2");

image.png

2. reactive

image.png

3. props

方法一 当props没有默认值

image.png

方法二 当props有默认值或其他配置

image.png

4. inject