const props = defineProps(['propMsg', 'propId'])
const props = defineProps({ propMsg: String, propId: { type: Number, required: false, default: 18 } })
<div>{{ propMsg }} - {{ props.propId }}</div>
import { computed } from 'vue'; const props = defineProps({ msg: String }) const comp = computed(() => { //return msg.toUpperCase() return props.msg.toUpperCase() })
<div>computed {{ comp }}</div>
import { ref } from 'vue'; import Test from './components/Test.vue'; let msg = ref('hi,there')
<Test :propMsg="msg" propId="18"></Test>
<Test :propId="18" />
<Test :propId="item.id" />
<Test isDone />
<Test :isDone="false" />
<Test :isDone="item.flag" />
<Test :arr="[1,2,3,4,5]" />
<Test :arr="item.list" />
<Test :obj="{id:1001, name:'glpla'}" />
<Test :obj="item.author" />
暴露参数,类型为函数;注意是 Function,不是 function
const props = defineProps({ closeFn: Function, confirmFn: Function })
使用方法
<button @click="closeFn">×</button> <button @click="confirmFn">confirm</button>
传递方法
<Msg :closeFn="closeFn" :confirmFn="confirmFn"></Msg>
定义事件处理函数
const closeFn = () => { } const confirmFn = () => { }
. 普通属性
. 函数/方法
const props = defineProps({ items: { type: Array, default: () => [] }, currentInd: { type: Number, default: 0 } })
<div class="indictator"> <span class="dot" :class="{ 'active': currentInd === ind }" v-for="(item, ind) in items" :key="ind">{{ ind + 1 }}</span> </div>
<Indicators :items="imgsUrl" :currentInd="currentInd"/>
const props = defineProps(['imgsUrl'])
<Swiper :imgsUrl="imgsUrl"/>
<template v-if="goods.length"> <GoodsItem :product="item" v-for="(item, ind) in goods" :key="item.id" /> <footer class="f-s-s">我是有底线的~</footer> </template> <div v-else>商品获取失败,请刷新页面</div>
<div class="copyright"> <img class="img" :src='src' alt=""> <div class="desc">2024 - 2026 © Copyright, powered by {{ id }}</div> </div>
const props = defineProps({ src: { type: String, default: 'https://glpla.github.io/imgs/avatar.jpg' }, id: { type: String, default: 'glpla.github.io' } })
.copyright { display: flex; flex-direction: column; align-items: center; } .img { width: 60px; border-radius: 50%; }
<div class="title"> <h3>{{ title }}</h3> <button @click="handle"> <span>查看全部</span> <span class="iconfont icon-jiantou_liebiaoxiangyou_o"></span> </button> </div>
const props = defineProps({ title: { type: String, default: '' }, handle: { type: Function, default: () => { } } })
<Title title="我的优惠专区" :handle="toCoupon"></Title>
const toCoupon = () => { alert('to coupon') }
<Title title="福利中心" :handle="toWelfare"></Title>
const toWelfare = () => { alert('to welfare') }
<Switch :switchs="switchs"></Switch>
<Tabbar :tabs="tabs"></Tabbar>
<Recommend :reco="goods.recommend" />
<Map class="map" :center="center" :geometries="geometries"></Map>