Skip to content
This repository has been archived by the owner on Aug 21, 2019. It is now read-only.

Commit

Permalink
Doc: Card 示例页 title 标注错误为 CAPSULE (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyerl authored and pangxie1991 committed Jul 30, 2018
1 parent f51725c commit 5ee3096
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion example/components/doc-page/index.wxml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<wxs module="filter">
module.exports.toUpperCase = function(v) {
return v.toUpperCase();
}
</wxs>

<view class="doc-container">
<view class="doc-title">{{ title }}</view>
<view class="doc-title">{{ filter.toUpperCase(title) }}</view>
<view class="doc-content {{ withoutPadding ? 'doc-content--without-pd' : '' }}">
<slot></slot>
</view>
Expand Down
2 changes: 1 addition & 1 deletion example/pages/card/index.wxml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<doc-page title="CAPSULE" without-padding>
<doc-page title="CARD" without-padding>

<zan-panel without-border>
<zan-card
Expand Down

0 comments on commit 5ee3096

Please sign in to comment.