美文网首页
Vue3--篇7--ref函数--处理对象数据类型

Vue3--篇7--ref函数--处理对象数据类型

作者: 扶得一人醉如苏沐晨 | 来源:发表于2023-04-11 09:04 被阅读0次
    <template>
      <h1>职位:{{ obj.type }}</h1>
      <h1>岁数:{{ obj.salary }}</h1>
      <h1><button @click="editInfo">修改信息</button></h1>
    </template>
    
    <script>
    import { ref } from "vue";
    export default {
      name: "App",
      setup() {
        let obj = ref({
          type: "前端工程师",
          salary: "30k",
        });
        function editInfo() {
          obj.value.type = "Ui设计";
          obj.value.salary = "60k";
        }
        return {
          obj,
          editInfo,
        };
      },
    };
    </script>
    
    <style lang="scss"></style>
    
    
    image.png image.png

    相关文章

      网友评论

          本文标题:Vue3--篇7--ref函数--处理对象数据类型

          本文链接:https://www.haomeiwen.com/subject/cyccddtx.html