mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
b11e9c0e51
- [ ] babel-eslint https://github.com/babel/babel-eslint/issues/664 - [x] eslint-config-standard-jsx https://github.com/standard/eslint-config-standard-jsx/issues/32 - [x] eslint-config-standard to be stable release https://github.com/standard/eslint-config-standard/issues/123 - [x] eslint-plugin-html - [x] eslint-plugin-import - [x] eslint-plugin-jest - [x] eslint-plugin-node - [x] eslint-plugin-promise - [x] eslint-plugin-standard https://github.com/standard/eslint-plugin-standard/issues/29 - [x] eslint-plugin-vue https://github.com/vuejs/eslint-plugin-vue/pull/504 - [x] eslint-plugin-react https://github.com/yannickcr/eslint-plugin-react/releases/tag/v7.10.0
37 lines
578 B
Vue
37 lines
578 B
Vue
<template>
|
|
<div>
|
|
<ul>
|
|
<li><nuxt-link to="/">Activity</nuxt-link></li>
|
|
<li><nuxt-link to="/contributors">Contributors</nuxt-link></li>
|
|
</ul>
|
|
<nuxt />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
ul li {
|
|
display: inline-block;
|
|
float: left;
|
|
border: 1px #ddd solid;
|
|
}
|
|
ul li a {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 10px;
|
|
color: #222;
|
|
text-decoration: none;
|
|
}
|
|
ul li a.nuxt-link-exact-active {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|