29 Vue3中父组件如何向子组件传值

概述

通过prop传递值给子组件在Vue3中是非常常用的方法。

比如,我们可以设计一个卡片组件,往这个组件中,传递标题和内容,卡片会进行相应的渲染。

基本用法

我们创建src/components/Demo29.vue,代码如下:

<script setup>
// 定义要接收的属性
const props = defineProps({
  title: String,
  content: String,
})
script>
<template>
  <div>
    <h3>标题:{{props.title}}h3>
    <div>内容:{{props.content}}div>
  div>
template>

接着,我们修改src/App.vue:

<script setup>
import Demo from "./components/Demo29.vue"
script>
<template>
  <h1>欢迎跟着Python私教一起学习Vue3入门课程h1>
  <hr>
  <Demo title="使用prop传递属性" content="是Vue3中非常常用的方法。。。"/>
template>

然后,我们浏览器访问:http://localhost:5173/

29 Vue3中父组件如何向子组件传值_第1张图片

完整代码

package.json

{
  "name": "hello",
  "private": true,
  "version": "0.1.0",
  "type": "module",
  "scripts": {
    "dev": "vite",
    "build": "vite build"
  },
  "dependencies": {
    "vue": "^3.3.8"
  },
  "devDependencies": {
    "@vitejs/plugin-vue": "^4.5.0",
    "vite": "^5.0.0"
  }
}

vite.config.js

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'

export default defineConfig({
  plugins: [vue()],
})

index.html

doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <link rel="icon" type="image/svg+xml" href="/vite.svg" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Vite + Vuetitle>
  head>
  <body>
    <div id="app">div>
    <script type="module" src="/src/main.js">script>
  body>
html>

src/main.js

import { createApp } from 'vue'
import App from './App.vue'

createApp(App).mount('#app')

src/App.vue

<script setup>
import Demo from "./components/Demo29.vue"
script>
<template>
  <h1>欢迎跟着Python私教一起学习Vue3入门课程h1>
  <hr>
  <Demo title="使用prop传递属性" content="是Vue3中非常常用的方法。。。"/>
template>

src/components/Demo29.vue

<script setup>
// 定义要接收的属性
const props = defineProps({
  title: String,
  content: String,
})
script>
<template>
  <div>
    <h3>标题:{{props.title}}h3>
    <div>内容:{{props.content}}div>
  div>
template>

启动方式

yarn
yarn dev

浏览器访问:http://localhost:5173/

你可能感兴趣的:(vue.js,前端,javascript)