91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在Nuxt 中使用nuxt-child組件實現父頁面向子頁面傳值

發布時間:2020-11-06 14:39:18 來源:億速云 閱讀:1555 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關在Nuxt 中使用nuxt-child組件實現父頁面向子頁面傳值,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

在Nuxt 中使用nuxt-child組件實現父頁面向子頁面傳值

在Nuxt 中使用nuxt-child組件實現父頁面向子頁面傳值

自己案例代碼:

pages/parent.vue

<template>
 <div>
 <h3>父組件的頁面的內容</h3>
 <ul>
  <!-- 進行切換子頁面,寫法同vue.js -->
  <li><nuxt-link to='/parent/child'>child</nuxt-link></li>
  <li><nuxt-link to='/parent/child2'>child2</nuxt-link></li>
 </ul>
 <hr>
 <div class="box">
  <p>嵌套子頁面內容區</p>
  <!-- <nuxt-child>標簽在父頁面組件中相當于是子頁面組件的占位符;嵌套中這個不可少 -->
  <nuxt-child keep-alive :foobar="123"></nuxt-child>
 </div>
 </div>
</template>
<script>
export default {
 
}
</script>
<style scoped>
.box{
 margin-top: 20px;
 padding: 20px;
 border: 2px solid pink;
 border-radius: 5px;
}
</style>

pages/parent/index.vue

<template>
 <div>
 <h3>嵌套子組件中的默認頁面index.vue</h3>
 </div>
</template>
<script>
export default {
 
}
</script>
<style scoped>
 
</style>

pages/parent/child.vue

<template>
 <div>
 <h3>嵌套子組件中的頁面child</h3>
 <p>foobar:{{foobar}}</p>
 </div>
</template>
<script>
export default {
 props:['foobar']
}
</script>
<style scoped>
 
</style>

pages/parent/child2.vue

<template>
 <div>
 <h3>嵌套子組件中的頁面child2</h3>
 <p>foobar:{{foobar}}</p>
 </div>
</template>
<script>
export default {
 props: ['foobar']
}
</script>
<style scoped>
 
</style>

效果如下:

在Nuxt 中使用nuxt-child組件實現父頁面向子頁面傳值

在Nuxt 中使用nuxt-child組件實現父頁面向子頁面傳值

補充知識:nuxt二級路由

耗費了大半天的時間,終于把頁面的二級路由配置好了

先看我的目錄

在Nuxt 中使用nuxt-child組件實現父頁面向子頁面傳值

如果沒有登陸頁,根本就不用考慮嵌套路由的問題,主要的menu跳轉和<nuxt />可以直接寫到layouts/default.vue中,首頁可以放到pages/index.vue,就可以了。

好了,步入核心的

情景,在中間件middleware/authenticated.js

// 定義了一個中間件, 如果用戶未登錄, 則跳轉登錄頁。
export default function ({
 store,
 redirect
}) {
 if (!store.state.user) {
 return redirect('/login')
 }
}

首先,需要知道,pages/index.vue這個文件必須有,這是給路由'/',定義的頁面,但是我真正的首頁是在user/index.vue

pages/index.vue下

<template>
 <div >

 </div>
</template>

<script>
export default {
 created () {
 console.log(this.$router)
 this.$router.push('/login') // 頁面加載時跳轉
 }
}
</script>

意思是加載二級路由的pages/users.vue頁面

<template>
 <div >
 <el-container >
 <el-header class="theme-bg-color">
 <my-head />
 </el-header>
 <el-container >
 <my-side />
 <el-main>
  <NuxtChild :key="key"/>
 </el-main>
 </el-container>
 </el-container>
 </div>
</template>

<script>
import MySide from '~/components/MySide.vue'
import MyHead from '~/components/MyHead.vue'
export default {
 components: {
 MySide,
 MyHead
 },
 computed: {
 key() {
  return this.$route.name !== undefined&#63; this.$route.name +new Date(): this.$route +new Date()
 }
 }
}
</script>

注意,在pages/users/index.vue頁面中

export default {
 name: 'users'
}

其他頁面,比如pages/users/ditch.vue頁面中

export default {
 name: 'users-ditch'
}

一定要這樣去寫name,官網上也是這樣說明的。

總結,嵌套路由(二級路由寫法)

一,頁面有個user.vue,文件夾也要有個同名的user;

二,最好有index.vue頁面;

三,name格式。

看完上述內容,你們對在Nuxt 中使用nuxt-child組件實現父頁面向子頁面傳值有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彭州市| 文昌市| 平乡县| 浠水县| 会东县| 三亚市| 鄯善县| 洛隆县| 渝北区| 汤原县| 时尚| 积石山| 曲水县| 山阳县| 新蔡县| 垣曲县| 中方县| 峨边| 黑龙江省| 合山市| 乌什县| 山阴县| 呈贡县| 三江| 乌拉特前旗| 南城县| 垦利县| 蓬溪县| 吉首市| 上犹县| 蛟河市| 峡江县| 榆树市| 阿拉善右旗| 怀仁县| 丰台区| 宕昌县| 沅陵县| 江山市| 工布江达县| 弋阳县|