mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-24 05:46:04 +08:00
20 lines
382 B
JavaScript
Executable File
20 lines
382 B
JavaScript
Executable File
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
props: {
|
|
info: null,
|
|
name: String,
|
|
size: String,
|
|
color: String,
|
|
customStyle: String,
|
|
classPrefix: {
|
|
type: String,
|
|
value: 'van-icon'
|
|
}
|
|
},
|
|
methods: {
|
|
onClick() {
|
|
this.$emit('click');
|
|
}
|
|
}
|
|
});
|