reactive函数
<template> <div> <h1>vue3</h1> <span>{{info.name}} - {{info.age}}</span> <button @click="infobtn">修改info</button> </div> </template> <script> import {reactive} from 'vue' export default { setup(){ // 数据 : reactive只能是复杂类型 const info = reactive({ name:'吴宇腾', age:18 }) // 事件 const infobtn = ()=>{ info.name = '海贼王', info.age = 1999 } return { info, infobtn } } } </script>
本文来自博客园,作者:杨建鑫,转载请注明原文链接:https://www.cnblogs.com/qd-lbxx/p/16618806.html