vue activated在子組件中的使用詳情
頁面:base:
<template> <div class="tab-container"> <h1 style="text-align: center"> 申請{{ form.category }}{{ form.companyType }}入駐 </h1> <div class="form-panel" style="margin-left: 20px;text-align: right;"> <el-button type="info" @click="cancelSave">取消</el-button> <el-button type="warning" @click="transientSave">暫存</el-button> <el-button type="danger" @click="persistSave">保存</el-button> </div> <el-tabs v-model="activeName" style="margin-top: 15px" type="border-card" :before-leave="collectPaneFormData" @tab-click="initPaneData"> <el-tab-pane v-for="item in tabMapOptions" :key="item.key" :label="item.label" :name="item.key"> <keep-alive> <tab-pane :is="item.key" :ref="item.key" :type="item.key" @create="showCreatedTimes" /> <!--<component :is="item.key" :ref="item.key" :type="item.key" @create="showCreatedTimes" />--> </keep-alive> </el-tab-pane> </el-tabs> </div> </template>
有五個tab-pane
, 其中三個子組件中有activated
方法。這三個子組件中都有連接跳轉到person
, 當在person
中進行:this.$router.go(-1)
// 取消,關閉返回 cancelSubmit() { // 調用全局掛載的方法,關閉當前頁 this.$store.dispatch('tagsView/delView', this.$route) this.$router.go(-1) },
這時三個子組件的activated
方法都會執行嗎?如何隻讓跳轉到person
中的哪個子組件的activated
方法執行,其它兩個不執行activated
方法
到此這篇關於vue activated
在子組件中的使用詳情的文章就介紹到這瞭,更多相關vue activated
在子組件中的使用內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- 使用ElementUI修改el-tabs標簽頁組件樣式
- vue選項卡組件的實現方法
- Vue Element前端應用開發之組織機構和角色管理
- elementui中使用el-tabs切換實時更新數據
- vue中activated的用法