mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
16 lines
194 B
Vue
16 lines
194 B
Vue
|
<template>
|
||
|
<div class="red">
|
||
|
This is red
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style lang="postcss">
|
||
|
@custom-selector :--red div.red;
|
||
|
:--red {
|
||
|
background-color: blue;
|
||
|
}
|
||
|
.red {
|
||
|
color: red;
|
||
|
}
|
||
|
</style>
|