diff --git a/components/lib/baseicon/BaseIcon.vue b/components/lib/baseicon/BaseIcon.vue index c3d966617..1c58ac120 100644 --- a/components/lib/baseicon/BaseIcon.vue +++ b/components/lib/baseicon/BaseIcon.vue @@ -17,11 +17,6 @@ export default { } }, style: BaseIconStyle, - computed: { - pathId() { - return UniqueComponentId('pv_icon_clip_pv_id_'); - } - }, methods: { pti() { const isLabelEmpty = ObjectUtils.isEmpty(this.label); @@ -40,6 +35,11 @@ export default { 'aria-hidden': isLabelEmpty }; } + }, + computed: { + pathId() { + return UniqueComponentId('pv_icon_clip_pv_id_'); + } } };