-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
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
fix(QButton): types #264
fix(QButton): types #264
Conversation
✅ Deploy Preview for qui-docs ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
✅ Deploy Preview for qui-max ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
2f11b8f
to
c61f850
Compare
theme: props.theme, | ||
type: props.type, | ||
size: props.size | ||
const isLoading = computed<boolean>(() => Boolean(props.loading)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
зачем?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
в пропс loading
можно прокинуть null
т.к. пропс не является required: true
придется делать везде где loading
нужен как boolean
как то так Boolean(props.loading)
No description provided.