赞
踩
比较常用的方法加注视一览,我尽量写简单一点,通熟易懂,举一反三
<template> { { state.count }} </template> <script> import { reactive } from 'vue'; export default { setup () { //创建响应式数据 const state = reactive({ count: 0, }); return { state }; } }; </script>
ref 的返回值是一个对象 注意使用.value属性
<template>
{
{
Number }}- {
{
String }}
</template>
import {
ref } from 'vue';
export default {
setup () {
const Number = ref(0);
const String
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。