博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Vue @Component] Dynamic Vue.js Components with the component element
阅读量:5278 次
发布时间:2019-06-14

本文共 807 字,大约阅读时间需要 2 分钟。

You can dynamically switch between components in a template by using the reserved <component> element and dynamically bind to its is attribute. By using <keep-alive> you can tell Vue to keep the component in memory.

 

In the

Because inside @Component({components: {}}) haven't register those component 'One, Two, Three', so then using 

'selectedComp' has to ben a real functional component. 

 

But If we have registered the components:

@Component({  components: {     One, Two, Three  }})

The the 'selectedComp' can be just component's name:

selectedComponent = 'One' | 'Two' | 'Three'

 

 

<keep-alive> Component: 

Components might have some state, you want to keep the state instead of losting it, you can use 'keep-alive' component:

 

 

 

 

转载于:https://www.cnblogs.com/Answer1215/p/9374566.html

你可能感兴趣的文章
kpvalidate开辟验证组件,通用Java Web请求服务器端数据验证组件
查看>>
python下载及安装方法
查看>>
C#、OC递归锁
查看>>
CF981H K Paths
查看>>
2019.1.19equals方法重写
查看>>
程序执行流程/布尔类型与布尔:运算猜数字游戏;库的使用:turtle。
查看>>
消息队列和它使用的四种场景介绍
查看>>
DOM 文档对象模型+倒计时
查看>>
CodeForces Round #498 Div.3 A. Adjacent Replacements
查看>>
#Leetcode# 373. Find K Pairs with Smallest Sums
查看>>
Java的File类
查看>>
hiho 第119周 最大权闭合子图
查看>>
Ubantu下怎么拨号连接
查看>>
C++数组初始化
查看>>
关于天刀精英服/体验服的福利介绍
查看>>
python常用模块③
查看>>
函数部分总结思维导图
查看>>
x的x次幂的值为10,求x的近似值
查看>>
在Windows下用MingW 4.5.2编译FFmpeg
查看>>
TTL、RS232、RS485、串口
查看>>