1234567891011121314151617181920 |
- 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');
- }
- }
- });
|