We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 030b80e commit b7fd053Copy full SHA for b7fd053
src/platforms/weex/compiler/modules/append.js
@@ -1,6 +1,10 @@
1
/* @flow */
2
3
function transformNode (el: ASTElement, options: CompilerOptions) {
4
+ if (el.tag === 'cell' && !el.attrsList.some(item => item.name === 'append')) {
5
+ el.attrsMap.append = 'tree'
6
+ el.attrsList.push({ name: 'append', value: 'tree' })
7
+ }
8
if (el.attrsMap.append === 'tree') {
9
el.appendAsTree = true
10
}
0 commit comments