mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
15 lines
275 B
Vue
Executable File
15 lines
275 B
Vue
Executable File
<template>
|
|
<div class="main">
|
|
<p>Page with SCSS</p>
|
|
<p><nuxt-link to="/less">LESS</nuxt-link></p>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
/* ~/assets/variables.scss is injected automatically here */
|
|
.main {
|
|
background: $main;
|
|
padding: 10px;
|
|
}
|
|
</style>
|