mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
18 lines
286 B
Vue
18 lines
286 B
Vue
<template>
|
|
<div class="main">
|
|
<p>Page with LESS</p>
|
|
<p><nuxt-link to="/">SCSS</nuxt-link></p>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
/* ~/assets/*.less are injected automatically here */
|
|
.main {
|
|
background: @main;
|
|
padding: 10px;
|
|
}
|
|
a {
|
|
color: white;
|
|
}
|
|
</style>
|