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