-
-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
bugSomething isn't workingSomething isn't working
Description
As we use Storybook its quite helpful to set up classes based on params of a component, but this one gives me false positives for all of the class variants:
<script setup lang="ts">
import { computed } from 'vue'
// ...
const variantClasses = computed(() => {
switch (props.variant) {
case 'primary':
return 'oh-btn-primary'
case 'secondary':
return 'oh-btn-secondary'
case 'tertiary-blue':
return 'oh-btn-tertiary-blue'
case 'tertiary-gray':
return 'oh-btn-tertiary-gray'
default:
return ''
}
})
</script>
<template>
<button class="oh-btn" :class="[variantClasses]">
<slot />
</button>
</template>
<style lang="scss" scoped>
@import "../../assets/styles/main.scss";
.oh-btn {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease-in-out;
&-primary {
/* The selector `.oh-btn-primary` is unused */
}
&-secondary {
/* The selector `.oh-btn-secondary` is unused */
}
/*...*/
</style>
Is it a bug or is there something I've missed in the config?
jesko-plitt, neillrobson, anthonygore and GrantGryczan
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working