Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 311 Bytes

参照 x-ref 0539997b5eed4f6ca9602ca76d684c1e.md

File metadata and controls

11 lines (7 loc) · 311 Bytes

参照: x-ref


**x-ref指令常常与$refs结合使用,用于直接访问 DOM 元素。它最适合作为getElementById()querySelector()**之类的 API 的替代品。

<button @click="$refs.text.remove()">删除文本</button>
 
<span x-ref="text">你好 👋</span>