本文最后更新于452 天前,其中的信息可能已经过时,如有错误请发送邮件到3368129372@qq.com
相关链接
基础语法
- v-model双向绑定时,有时会将变量自动转化为'string',使用v-mode.number可转化为数字.
高级用法
父组件传参给子组件
使用defineProps方法如下:
- 目录
component
|————————example.vue - 组件代码
<template> example </template> <script setup lang="ts"> import UserType from "../models/user"; interface UserListCardProps{ userList: UserType[], } const props = defineProps<UserListCardProps>() </script> <style scoped> example </style>
- 引用代码
<user-card-list :user-list="userList"/>
将驼峰式改为“-”的形式即为要写的参数