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 was wonder if we could write code like this instead of using vuejs's jsx feature? Since I am facing some reactivity issues while working with jsx...
<template> <dummy-component></dummy-component> </template> <script> import DummyComponent from './DummyComponent.vue' import { styled } from '@egoist/vue-emotion' export default { components: { 'dummy-component': styled(DummyComponent)` .title:hover { color: #ed508f; } `, }, } </script> <style lang="scss" scoped></style>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was wonder if we could write code like this instead of using vuejs's jsx feature? Since I am facing some reactivity issues while working with jsx...
The text was updated successfully, but these errors were encountered: