跳至主要內容

Vue 中将 ref.value 简写为 ref

muzzik小于 1 分钟笔记WebVue

在 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>

📣 觉得很赞?分享给你的朋友吧!