初始化 uniapp 小程序

This commit is contained in:
YunaiV
2021-11-24 23:33:06 +08:00
parent e2b76ee0e5
commit 6c4908e70e
85 changed files with 12478 additions and 0 deletions

View File

@ -0,0 +1,22 @@
var inline = {
abbr: 1,
b: 1,
big: 1,
code: 1,
del: 1,
em: 1,
i: 1,
ins: 1,
label: 1,
q: 1,
small: 1,
span: 1,
strong: 1,
sub: 1,
sup: 1
}
module.exports = {
use: function(item) {
return !item.c && !inline[item.name] && (item.attrs.style || '').indexOf('display:inline') == -1
}
}