博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Vue @Component] Pass Props to Vue Functional Templates
阅读量:6426 次
发布时间:2019-06-23

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

Functional templates allow you to create components consisting of only the template tag and exposing the props passed into the template with the props object off of the template context. This approach allows you to build simple configurable templates without having to write any backing code.

 

From the code in previous post:

 

We create two functional template component 'Header' and 'Footer':

 

Functional template works pretty much like React functional component:

const header = props => 
{
{props.header}}

Just in Vue, you just need to add 'functional' directive to the <template>, don't need to add any js code.

 

exports those componets in components/index.js file:

export { default as Header } from "./Header"export { default as Footer } from "./Footer"

 

Using those component to refactor the code:

 

转载地址:http://ixyga.baihongyu.com/

你可能感兴趣的文章
在Solaris 下使用Os Watcher 监控Oracle
查看>>
1.9 使用PuTTY远程连接Linux;1.10 使用xshell连接Linux;1.11 PuT
查看>>
[unity3d]为我们的游戏添加好看的字体
查看>>
android 查询工具源代码
查看>>
java 常用工具类 ——集合
查看>>
我的友情链接
查看>>
随机打印出数组的元素(分治思想)
查看>>
cgroup 介绍 与使用
查看>>
dwz表单提交响应
查看>>
我的友情链接
查看>>
Linux 下mail 的简单使用
查看>>
DNS解析过程
查看>>
对容器、迭代器的理解
查看>>
忘记mysql root密码的修改方法
查看>>
MFC小结
查看>>
2018年终总结
查看>>
oracle修改varchar2为number
查看>>
Linux C 文件的输入/输出操作
查看>>
Android 进程和服务相关资料
查看>>
线程优先级
查看>>