vue3速成

该文章探讨了Vue.js中的响应式数据机制,包括ref和reactive创建响应式数据,以及toRefs和computed用于处理对象和计算属性的方法。还介绍了父子组件间的通信,如props向子组件传递值,以及子组件如何通过事件向父组件传递信息。另外,提到了Pinia的组合式store概念以及VueRouter的路由参数传递方式。
摘要由CSDN通过智能技术生成
<template>
    <div>
        {{ msg }}
        <button @click="handleclick">{{ msg }}</button>
    </div>
</template>
<script setup>
import { ref } from 'vue';
let msg=ref("hello world")
const handleclick=()=>{
  alert(msg.value)
  msg.value="lsh"
}
</script>

ref响应式数据msg改了页面也变化

<template>
  <div class="about">
    {{ state.name }}年龄是{{ state.age }}
  </div>
</template>
<script setup>
import {reactive} from "vue";
const state = reactive({
  name:'lsh',
  age:21
})
</script>

reactive({})响应式对象

<template>
    <div>
        {{ name }}age是{{ age }}
    </div>
</template>
<script setup>
import {reactive,toRefs} from "vue";
const state = reactive({
  name:'lsh',
  age:21
})
const {name,age} = {...toRefs(state)}
</script>

toRefs解构reactive对象里的数据

<template>
    <div>
        {{ computedname }}
    </div>
</template>
<script setup>
import {reactive,toRefs,computed} from "vue";
const state = reactive({
  name:'lsh',
  age:21
})
const {name,age} = {...toRefs(state)}
const computedname=computed(()=>name.value.substring(0,2).toUpperCase()+name.value.substring(2)
+'年龄是'+age.value
)
</script>

computed计算出的属性在div中直接用。substring(0,2)指的是剪切数组[0,2),substring(2)指删掉[0,2),以上结果LSh

child.vue

<template>
    <div>
        儿子组件标题是{{ title }}
        <div>父组件传过来的标题{{ props.title }}</div>
    </div>
</template>
<script setup>
const props=defineProps({
    title: {
        type: String,
        default:"无"
    }
})
</script>

父组件引用child.vue传值

 传值结果

不传值<child></child>结果

子组件怎么传值给父组件呢?另个案例

父组件

子组件child.vue

<template>
    <div>
        <button @click="posthome">子发送给父组件</button>
    </div>
</template>
<script setup>
const props=defineProps({
    title: {
        type: String,
        default:"无"
    }
})
const emit=defineEmits(["right"])
const posthome=()=>{
    emit("right","来自子组件的问候")
}
</script>

 

 

$reset()重置为初始值

pinia的组合式store怎么写呢

路由传参,首页.vue

<router-link :to="{ path: '/wz', query: { index: index } }" class="card mb-3">
  <img :src=item.imgurl class="card-img-top">
    <h4 class="card-title">{{ item.title }}</h4>
  </router-link></div>

文章.vue要用route接收传过来的index

import { useRoute } from 'vue-router';
const route = useRoute();
const index = route.query.index;
const getwz=async()=>{
const res=await request(`/getwz?index=${index}`)

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值