Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
20e52bc2
U
uni-app
项目概览
DCloud
/
uni-app
3 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
20e52bc2
编写于
11月 01, 2021
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore(mp): fallback => fallbackContent
上级
04078639
变更
15
隐藏空白更改
内联
并排
Showing
15 changed file
with
31 addition
and
15 deletion
+31
-15
packages/uni-cli-shared/src/mp/template.ts
packages/uni-cli-shared/src/mp/template.ts
+5
-1
packages/uni-mp-alipay/dist/uni.compiler.js
packages/uni-mp-alipay/dist/uni.compiler.js
+2
-1
packages/uni-mp-alipay/src/compiler/options.ts
packages/uni-mp-alipay/src/compiler/options.ts
+2
-1
packages/uni-mp-baidu/dist/uni.compiler.js
packages/uni-mp-baidu/dist/uni.compiler.js
+2
-1
packages/uni-mp-baidu/src/compiler/options.ts
packages/uni-mp-baidu/src/compiler/options.ts
+2
-1
packages/uni-mp-compiler/__tests__/slot.fallback.spec.ts
packages/uni-mp-compiler/__tests__/slot.fallback.spec.ts
+1
-1
packages/uni-mp-compiler/__tests__/testUtils.ts
packages/uni-mp-compiler/__tests__/testUtils.ts
+2
-1
packages/uni-mp-compiler/src/template/codegen.ts
packages/uni-mp-compiler/src/template/codegen.ts
+1
-1
packages/uni-mp-compiler/src/transform.ts
packages/uni-mp-compiler/src/transform.ts
+2
-1
packages/uni-mp-qq/dist/uni.compiler.js
packages/uni-mp-qq/dist/uni.compiler.js
+2
-1
packages/uni-mp-qq/src/compiler/options.ts
packages/uni-mp-qq/src/compiler/options.ts
+2
-1
packages/uni-mp-toutiao/dist/uni.compiler.js
packages/uni-mp-toutiao/dist/uni.compiler.js
+2
-1
packages/uni-mp-toutiao/src/compiler/options.ts
packages/uni-mp-toutiao/src/compiler/options.ts
+2
-1
packages/uni-mp-weixin/dist/uni.compiler.js
packages/uni-mp-weixin/dist/uni.compiler.js
+2
-1
packages/uni-mp-weixin/src/compiler/options.ts
packages/uni-mp-weixin/src/compiler/options.ts
+2
-1
未找到文件。
packages/uni-cli-shared/src/mp/template.ts
浏览文件 @
20e52bc2
...
...
@@ -24,7 +24,11 @@ export interface MiniProgramCompilerOptions {
/**
* 是否支持后备内容
*/
fallback
?:
boolean
fallbackContent
?:
boolean
/**
* 是否支持动态插槽名
*/
dynamicSlotNames
?:
boolean
}
filter
?:
{
lang
:
string
...
...
packages/uni-mp-alipay/dist/uni.compiler.js
浏览文件 @
20e52bc2
...
...
@@ -188,7 +188,8 @@ const miniProgram = {
slot
:
{
$slots
:
true
,
// 支付宝 fallback 有 bug,当多个带默认 slot 组件嵌套使用时,所有的默认slot均会显示,如uni-file-picker(image)
fallback
:
false
,
fallbackContent
:
false
,
dynamicSlotNames
:
true
,
},
directive
:
'
a:
'
,
};
...
...
packages/uni-mp-alipay/src/compiler/options.ts
浏览文件 @
20e52bc2
...
...
@@ -26,7 +26,8 @@ export const miniProgram: MiniProgramCompilerOptions = {
slot
:
{
$slots
:
true
,
// 支付宝 fallback 有 bug,当多个带默认 slot 组件嵌套使用时,所有的默认slot均会显示,如uni-file-picker(image)
fallback
:
false
,
fallbackContent
:
false
,
dynamicSlotNames
:
true
,
},
directive
:
'
a:
'
,
}
...
...
packages/uni-mp-baidu/dist/uni.compiler.js
浏览文件 @
20e52bc2
...
...
@@ -155,7 +155,8 @@ const miniProgram = {
array
:
true
,
},
slot
:
{
fallback
:
true
,
fallbackContent
:
true
,
dynamicSlotNames
:
false
,
},
directive
:
'
s-
'
,
};
...
...
packages/uni-mp-baidu/src/compiler/options.ts
浏览文件 @
20e52bc2
...
...
@@ -23,7 +23,8 @@ export const miniProgram: MiniProgramCompilerOptions = {
array
:
true
,
},
slot
:
{
fallback
:
true
,
fallbackContent
:
true
,
dynamicSlotNames
:
false
,
},
directive
:
'
s-
'
,
}
...
...
packages/uni-mp-compiler/__tests__/slot.fallback.spec.ts
浏览文件 @
20e52bc2
...
...
@@ -4,7 +4,7 @@ const options = {
miniProgram
:
{
...
miniProgram
,
slot
:
{
fallback
:
true
,
fallback
Content
:
true
,
},
},
}
...
...
packages/uni-mp-compiler/__tests__/testUtils.ts
浏览文件 @
20e52bc2
...
...
@@ -8,7 +8,8 @@ export const miniProgram: MiniProgramCompilerOptions = {
array
:
true
,
},
slot
:
{
fallback
:
false
,
fallbackContent
:
false
,
dynamicSlotNames
:
true
,
},
directive
:
'
wx:
'
,
}
as
const
...
...
packages/uni-mp-compiler/src/template/codegen.ts
浏览文件 @
20e52bc2
...
...
@@ -124,7 +124,7 @@ function genVFor(
function
genSlot
(
node
:
SlotOutletNode
,
context
:
TemplateCodegenContext
)
{
// 移除掉所有非name属性,即移除作用域插槽的绑定指令
node
.
props
=
node
.
props
.
filter
((
prop
)
=>
prop
.
name
===
'
name
'
)
if
(
!
node
.
children
.
length
||
context
.
slot
.
fallback
)
{
if
(
!
node
.
children
.
length
||
context
.
slot
.
fallback
Content
)
{
// 无后备内容或支持后备内容
return
genElement
(
node
,
context
)
}
...
...
packages/uni-mp-compiler/src/transform.ts
浏览文件 @
20e52bc2
...
...
@@ -257,7 +257,8 @@ export function createTransformContext(
array
:
true
,
},
slot
:
{
fallback
:
false
,
fallbackContent
:
false
,
dynamicSlotNames
:
true
,
},
directive
:
''
,
},
...
...
packages/uni-mp-qq/dist/uni.compiler.js
浏览文件 @
20e52bc2
...
...
@@ -98,7 +98,8 @@ const miniProgram = {
array
:
true
,
},
slot
:
{
fallback
:
false
,
fallbackContent
:
false
,
dynamicSlotNames
:
true
,
},
directive
:
'
qq:
'
,
};
...
...
packages/uni-mp-qq/src/compiler/options.ts
浏览文件 @
20e52bc2
...
...
@@ -28,7 +28,8 @@ export const miniProgram: MiniProgramCompilerOptions = {
array
:
true
,
},
slot
:
{
fallback
:
false
,
fallbackContent
:
false
,
dynamicSlotNames
:
true
,
},
directive
:
'
qq:
'
,
}
...
...
packages/uni-mp-toutiao/dist/uni.compiler.js
浏览文件 @
20e52bc2
...
...
@@ -35,7 +35,8 @@ const miniProgram = {
array
:
false
,
},
slot
:
{
fallback
:
true
,
fallbackContent
:
true
,
dynamicSlotNames
:
true
,
},
directive
:
'
tt:
'
,
};
...
...
packages/uni-mp-toutiao/src/compiler/options.ts
浏览文件 @
20e52bc2
...
...
@@ -31,7 +31,8 @@ export const miniProgram: MiniProgramCompilerOptions = {
array
:
false
,
},
slot
:
{
fallback
:
true
,
fallbackContent
:
true
,
dynamicSlotNames
:
true
,
},
directive
:
'
tt:
'
,
}
...
...
packages/uni-mp-weixin/dist/uni.compiler.js
浏览文件 @
20e52bc2
...
...
@@ -72,7 +72,8 @@ const miniProgram = {
array
:
true
,
},
slot
:
{
fallback
:
false
,
fallbackContent
:
false
,
dynamicSlotNames
:
true
,
},
directive
:
'
wx:
'
,
};
...
...
packages/uni-mp-weixin/src/compiler/options.ts
浏览文件 @
20e52bc2
...
...
@@ -29,7 +29,8 @@ export const miniProgram: MiniProgramCompilerOptions = {
array
:
true
,
},
slot
:
{
fallback
:
false
,
fallbackContent
:
false
,
dynamicSlotNames
:
true
,
},
directive
:
'
wx:
'
,
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录