We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have components that has <style> inside, this scss styles are not being imported, and there are no mention about it in documentation.
An example of component:
<template> <div aria-live="polite" class="qas-status" :class="backgroundClass" role="status" /> </template> <script setup> import { computed } from 'vue' defineOptions({ name: 'QasStatus', inheritAttrs: false }) const props = defineProps({ color: { type: String, default: 'light-blue-2' } }) const backgroundClass = computed(() => `bg-${props.color}`) </script> <style lang="scss"> .qas-status { background-color: red; border-radius: 100%; height: 16px; width: 16px; } </style>
The styles of class qas-status are not being applied.
qas-status
What to do?
No response
The text was updated successfully, but these errors were encountered:
#794 I have same problem, no idea how to solve it.
Sorry, something went wrong.
No branches or pull requests
Clear and concise description of the problem
I have components that has <style> inside, this scss styles are not being imported, and there are no mention about it in documentation.
An example of component:
The styles of class
qas-status
are not being applied.Suggested solution
What to do?
Alternative
No response
Additional context
No response
Validations
The text was updated successfully, but these errors were encountered: