mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
feat: FontAwesomeIcon click emit
This commit is contained in:
parent
e587fb5be6
commit
f8866ece2a
@ -12,6 +12,10 @@
|
|||||||
import { FontAwesomeIconProps } from '@/components/FontAwesomeIcon/props';
|
import { FontAwesomeIconProps } from '@/components/FontAwesomeIcon/props';
|
||||||
const props = defineProps(FontAwesomeIconProps);
|
const props = defineProps(FontAwesomeIconProps);
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'click'): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
const singleBeat = props.beat && !props.fade;
|
const singleBeat = props.beat && !props.fade;
|
||||||
const singleFade = !props.beat && props.fade;
|
const singleFade = !props.beat && props.fade;
|
||||||
const BeatFade = props.beat && props.fade;
|
const BeatFade = props.beat && props.fade;
|
||||||
@ -108,15 +112,19 @@
|
|||||||
color: props.color,
|
color: props.color,
|
||||||
'font-size': props.size ? `${props.size}rpx` : false,
|
'font-size': props.size ? `${props.size}rpx` : false,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const onClick = () => {
|
||||||
|
emit('click');
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<template v-if="props.stack">
|
<template v-if="props.stack">
|
||||||
<view class="icon-wrap" :class="wrapClassObject" :style="wrapStyleObject">
|
<view @click="onClick" class="icon-wrap" :class="wrapClassObject" :style="wrapStyleObject">
|
||||||
<slot :stack="props.stack"></slot>
|
<slot :stack="props.stack"></slot>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<view class="icon-wrap" :class="wrapClassObject" :style="wrapStyleObject">
|
<view @click="onClick" class="icon-wrap" :class="wrapClassObject" :style="wrapStyleObject">
|
||||||
<text class="icon" :style="iconStyleObject" :class="iconClassObject" />
|
<text class="icon" :style="iconStyleObject" :class="iconClassObject" />
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
@ -7,7 +7,7 @@ export const FontAwesomeIconProps = {
|
|||||||
name: {
|
name: {
|
||||||
type: String,
|
type: String,
|
||||||
default: 'default',
|
default: 'default',
|
||||||
required: true,
|
// required: true,
|
||||||
},
|
},
|
||||||
/** icon 风格
|
/** icon 风格
|
||||||
* 不同风格对应不同的css, 使用时请加载相应的css
|
* 不同风格对应不同的css, 使用时请加载相应的css
|
||||||
|
Loading…
x
Reference in New Issue
Block a user