| 123456789101112131415161718192021222324252627 |
- Component({
- options: {
- addGlobalClass: true
- },
- properties: {
- iconName: {
- type: String,
- value: "icon-feiyongleixing"
- },
- title: {
- type: String,
- },
- showText: {
- type: String,
- },
- isEmpty: {
- type: Boolean,
- value: false
- },
- placeholder: {
- type: String,
- value: "请选择"
- }
- },
- data: {},
- methods: {}
- })
|