当前位置:   article > 正文

VUE3里面 setup() 的常用方法一览_vuesetupextend

vuesetupextend

比较常用的方法加注视一览,我尽量写简单一点,通熟易懂,举一反三

响应式数据定义 ref、reactive

  • reactive 创建一个响应式对象
<template>
   {
   {
    state.count }}
</template>
<script>
import {
    reactive } from 'vue';
export default {
   
    setup () {
   
    	//创建响应式数据
        const state = reactive({
   
            count: 0,
        });
        return {
   
            state
        };
    }
};
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

ref 的返回值是一个对象 注意使用.value属性

<template>
   {
   {
    Number }}- {
   {
    String }}
</template>
import {
    ref } from 'vue';
export default {
   
    setup () {
   
        const Number = ref(0);
        const String 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/98170
推荐阅读
相关标签
  

闽ICP备14008679号