-
-
Notifications
You must be signed in to change notification settings - Fork 27
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
Variables don't work in nuxt.js #11
Comments
Please provide a full repro. |
I'm with the same problem (i'm using nuxt as well) style: css`
.container2 {
background-color: ${vm => vm.backgroundColor};
}
`,
data() {
return {
backgroundColor: 'red'
}
}, but the browser just put a background-color: var(--v0); I've tried the example that is on the documentation and it doesn't work either. Also the Preprocessors doesn't work (I have sass-loader and node-sass installed): ERROR in ./pages/teste.vue
Module Error (from ./node_modules/eslint-loader/index.js):
/home/arthurvdiniz/dev/sites/acervus-publico/pages/teste.vue
9:10 error scss not found in 'styled-vue' import/named
✖ 1 problem (1 error, 0 warnings) |
@egoist Same thing here. Preprocessors won't work. |
Works fine for me. With css and scss. Sample Repo here: https://github.com/christophwolff/nuxt-styled-vue-sample |
I try
but variables don't work
The text was updated successfully, but these errors were encountered: