Open
Description
- I have searched the issues of this repository and believe that this is not a duplicate.
Version
3.0.0-beta.9
Environment
"vue": "^3.2.25", "vite": "^2.8.0",
Reproduction link
Steps to reproduce
<script setup lang="ts">
import { ref } from "vue";
// 1:value必须是Ref类型
const value = ref();
</script>
<template>
<a-space>
<!-- 2: a-input必须在ant component内部 -->
<a-input v-model:value="value" placeholder="1234" />
</a-space>
</template>
1: 测试页面如上(注释1和注释2必须同时满足)
2:修改a-input的placeholder后保存页面, 无法完成热更新
What is expected?
期望可以实现placeholder的HMR
What is actually happening?
placeholder无法HMR