Vue 中将 ref.value 简写为 ref
小于 1 分钟
在 Vue 组件中修改 ref 变量需要 xxx.value =
,但是可以这样用 xxx =
安装
npm i -D @vue-macros/reactivity-transform
配置
{
"compilerOptions": {
"types": ["@vue-macros/reactivity-transform/macros-global"]
}
}
import ReactivityTransform from '@vue-macros/reactivity-transform/vite'
export default defineConfig({
plugins: [
ReactivityTransform(),
],
})
使用
<script setup lang="ts">
const value = $ref("");
value = "123";
</script>