-
-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Labels
Description
In:
<template>
<h1>hello</h1>
</template>
<script>
export default {
props: ['color', 'fontSize']
}
</script>
<style scoped>
h1 {
color: eval("color");
font-size: eval("fontSize * 2");
}
</style>
Out:
<template>
<h1 :style="{'--v0': color, '--v1': fontSize * 2}">hello</h1>
</template>
<script>
export default {
props: ['color', 'fontSize']
}
</script>
<style scoped>
h1 {
color: var(--v0);
font-size: var(--v1);
}
</style>
davidbernegger, danielwaltz, seanohue and daliborgogic