You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// m-tree-node
<template><div><p>this is tree node</p><!--此处可以直接引用--><m-tree-nodev-if="hasChild" />
</div></template><script>exportdefault{name: 'MTreeNode'}</script>
1. 组件的递归调用
例如在树形结构中
2. 必要的时候使用jsx
例如在Element UI的Message中,message支持传递
vNode
,此时的vNode需要手动h
这样写会比较麻烦且阅读不清晰,此时转换成jsx就不一样了。
3. 组件/实例的选项应该有统一的顺序
推荐顺序
4. 元素属性的顺序
5. 组件/实例选项中的空行
6. 组件名应该始终是多个单词的,根组件 App 除外。
7. 多个特性的元素换行
但不能为了换行而换行,超过2个或以上时,建议换行
这个规则类似于js换行(超过3个或以上时建议换行)
The text was updated successfully, but these errors were encountered: