Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 327 Bytes

ref.md

File metadata and controls

16 lines (14 loc) · 327 Bytes

ref

创建响应式对象,原始类型

  • 值保存在 value
    const count = ref(0);
    
    // 对值进行操作
    console.log(count.value);
  • 在模版中,vue 可以响应式对象的值展示出来
    const count = ref(0);
    
    // 模版中使用
    {{count}}