mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-18 00:45:55 +08:00
智慧宿舍系统小程序
This commit is contained in:
46
wechat/miniprogram/node_modules/@vant/weapp/dist/skeleton/index.js
generated
vendored
Normal file
46
wechat/miniprogram/node_modules/@vant/weapp/dist/skeleton/index.js
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
VantComponent({
|
||||
classes: ['avatar-class', 'title-class', 'row-class'],
|
||||
props: {
|
||||
row: {
|
||||
type: Number,
|
||||
value: 0,
|
||||
observer(value) {
|
||||
this.setData({ rowArray: Array.from({ length: value }) });
|
||||
},
|
||||
},
|
||||
title: Boolean,
|
||||
avatar: Boolean,
|
||||
loading: {
|
||||
type: Boolean,
|
||||
value: true,
|
||||
},
|
||||
animate: {
|
||||
type: Boolean,
|
||||
value: true,
|
||||
},
|
||||
avatarSize: {
|
||||
type: String,
|
||||
value: '32px',
|
||||
},
|
||||
avatarShape: {
|
||||
type: String,
|
||||
value: 'round',
|
||||
},
|
||||
titleWidth: {
|
||||
type: String,
|
||||
value: '40%',
|
||||
},
|
||||
rowWidth: {
|
||||
type: null,
|
||||
value: '100%',
|
||||
observer(val) {
|
||||
this.setData({ isArray: val instanceof Array });
|
||||
},
|
||||
},
|
||||
},
|
||||
data: {
|
||||
isArray: false,
|
||||
rowArray: [],
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user