Vue3中同時(shí)定義多個(gè)插槽的實(shí)現(xiàn)示例
概述
當(dāng)你想要給外部預(yù)留多個(gè)位置的時(shí)候,具名插槽就非常有用了。
比如,我們定義一個(gè)卡片,讓別人使用的時(shí)候,標(biāo)題可以自定義,內(nèi)容也可以自定義,這個(gè)時(shí)候就需要兩個(gè)插槽。
基本用法
我們創(chuàng)建src/components/Demo32.vue,代碼如下:
<template>
<div>
<slot name="title">
<h3>卡片默認(rèn)標(biāo)題</h3>
</slot>
<slot name="content">
<div>卡片默認(rèn)內(nèi)容</div>
</slot>
</div>
</template>
接著,我們修改src/App.vue:
<script setup>
import Demo from "./components/Demo32.vue"
</script>
<template>
<h1>歡迎跟著Python私教一起學(xué)習(xí)Vue3入門(mén)課程</h1>
<hr>
<demo/>
<hr>
<demo>
<template #title>
<h3>自定義的標(biāo)題</h3>
</template>
<template #content>
<div>自定義的內(nèi)容</div>
</template>
</demo>
</template>
然后,我們?yōu)g覽器訪問(wèn):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私教一起學(xué)習(xí)Vue3入門(mén)課程</h1>
<hr>
<demo/>
<hr>
<demo>
<template #title>
<h3>自定義的標(biāo)題</h3>
</template>
<template #content>
<div>自定義的內(nèi)容</div>
</template>
</demo>
</template>
src/components/Demo32.vue
<template>
<div>
<slot name="title">
<h3>卡片默認(rèn)標(biāo)題</h3>
</slot>
<slot name="content">
<div>卡片默認(rèn)內(nèi)容</div>
</slot>
</div>
</template>
啟動(dòng)方式
yarn yarn dev
瀏覽器訪問(wèn):http://localhost:5173/
到此這篇關(guān)于Vue3中同時(shí)定義多個(gè)插槽的實(shí)現(xiàn)示例的文章就介紹到這了,更多相關(guān)Vue3同時(shí)定義多個(gè)插槽內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
vue中封裝axios并實(shí)現(xiàn)api接口的統(tǒng)一管理
這篇文章主要介紹了vue中封裝axios并實(shí)現(xiàn)api接口的統(tǒng)一管理的方法,幫助大家更好的理解和使用vue,感興趣的朋友可以了解下2020-12-12
淺談VUE單頁(yè)應(yīng)用首屏加載速度優(yōu)化方案
這篇文章主要介紹了淺談VUE單頁(yè)應(yīng)用首屏加載速度優(yōu)化方案,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-08-08
VSCode寫(xiě)vue項(xiàng)目一鍵生成.vue模版,修改定義其他模板的方法
這篇文章主要介紹了VSCode寫(xiě)vue項(xiàng)目一鍵生成.vue模版,修改定義其他模板的方法,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-04-04

