vue.js

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript类库 > vue.js > Vue3同时定义多个插槽

Vue3中同时定义多个插槽的实现示例

作者:Python私教

本文主要介绍了Vue3中同时定义多个插槽的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

概述

当你想要给外部预留多个位置的时候,具名插槽就非常有用了。

比如,我们定义一个卡片,让别人使用的时候,标题可以自定义,内容也可以自定义,这个时候就需要两个插槽。

基本用法

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

<template>
  <div>
    <slot name="title">
      <h3>卡片默认标题</h3>
    </slot>
    <slot name="content">
      <div>卡片默认内容</div>
    </slot>
  </div>
</template>

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

<script setup>
import Demo from "./components/Demo32.vue"
</script>
<template>
  <h1>欢迎跟着Python私教一起学习Vue3入门课程</h1>
  <hr>
  <demo/>
  <hr>
  <demo>
    <template #title>
      <h3>自定义的标题</h3>
    </template>
    <template #content>
      <div>自定义的内容</div>
    </template>
  </demo>
</template>

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

在这里插入图片描述

完整代码

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" rel="external nofollow"  />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Vite + Vue</title>
  </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/Demo32.vue"
</script>
<template>
  <h1>欢迎跟着Python私教一起学习Vue3入门课程</h1>
  <hr>
  <demo/>
  <hr>
  <demo>
    <template #title>
      <h3>自定义的标题</h3>
    </template>
    <template #content>
      <div>自定义的内容</div>
    </template>
  </demo>
</template>

src/components/Demo32.vue

<template>
  <div>
    <slot name="title">
      <h3>卡片默认标题</h3>
    </slot>
    <slot name="content">
      <div>卡片默认内容</div>
    </slot>
  </div>
</template>

启动方式

yarn
yarn dev

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

到此这篇关于Vue3中同时定义多个插槽的实现示例的文章就介绍到这了,更多相关Vue3同时定义多个插槽内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文