[Improvement] add utils (#416)

This commit is contained in:
neverland 2018-08-13 14:02:35 +08:00 committed by GitHub
parent dcb2cfb824
commit 10f157adbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 9 deletions

View File

@ -1,14 +1,8 @@
import config from '../../config';
import list from '../../config';
import Page from '../../common/page';
Page({
data: {
list: config
},
onShareAppMessage() {
return {
title: 'Vant Weapp 组件库演示'
};
list
}
});

View File

@ -39,7 +39,7 @@ Search 支持自定义右侧取消按钮,使用名字为 action 的 slot 即
use-action-slot
@search="onSearch"
>
<view slot="action" @click="onSearch">搜索</view>
<view slot="action" bind:tap="onSearch">搜索</view>
</van-search>
```

13
packages/utils/index.js Normal file
View File

@ -0,0 +1,13 @@
function isDef(value) {
return value !== undefined && value !== null;
}
function isObj(x) {
const type = typeof x;
return x !== null && (type === 'object' || type === 'function');
}
export {
isObj,
isDef
};