Skip to content

keyframes scoped but -webkit-keyframs does't have change to -data-v-xxx #1099

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

Closed
eadio opened this issue Dec 20, 2017 · 2 comments
Closed

keyframes scoped but -webkit-keyframs does't have change to -data-v-xxx #1099

eadio opened this issue Dec 20, 2017 · 2 comments

Comments

@eadio
Copy link

eadio commented Dec 20, 2017

i have some question like this. the keyframes has change to data-v-xxx,, but the -webkit-keyframes doesn't have changed。

i write the code like this:
<style lang="styl" scoped> .ani animation a 1s ease 0s @keyframes a 0% width 0 100% width 100px </style>

But they have become that:
<style type="text/css"> .ani { -webkit-animation: a-data-v-xxx 1s ease 0s; animation: a-data-v-xxx 1s ease 0s;} **# //this -webkit-keyframes doesn't changed to -data-v-xxx** @-webkit-keyframes a{ 0%{ width: 0; } 100%{ width: 100px; } } @keyframes a-data-v-xxx{ 0%{ width: 0; } 100%{ width: 100px; } } </style>

# My project is build on vue-cli webpack.

How to solve it. Thinks!!

@Jinjiang
Copy link
Member

v13.5.1 has solved this problem via #1058
https://github.com/vuejs/vue-loader/releases/tag/v13.5.1
Please have a re-check.
Thanks.

@Jinjiang
Copy link
Member

@LinusBorg I guess this issue could be closed :-)

@kazupon kazupon closed this as completed Dec 25, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants