fix eslint pascal case warning (#4403)

[skip ci]
This commit is contained in:
Dmitry Molotkov 2018-11-25 10:39:01 +03:00 committed by Pooya Parsa
parent b6b7c4358e
commit 8666b53998
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,3 @@
<template> <template>
<nuxt /> <Nuxt />
</template> </template>

View File

@ -2,7 +2,9 @@
<div class="container"> <div class="container">
<h1>Another long page</h1> <h1>Another long page</h1>
<div class="spacer" style="width: 100%; height: 3000px; background: darkgreen" /> <div class="spacer" style="width: 100%; height: 3000px; background: darkgreen" />
<nuxt-link to="/">Home page</nuxt-link> <NuxtLink to="/">
Home page
</NuxtLink>
</div> </div>
</template> </template>

View File

@ -22,6 +22,10 @@
</NuxtLink> </NuxtLink>
</p> </p>
<div class="spacer" style="width: 100%; height: 3000px; background: grey" /> <div class="spacer" style="width: 100%; height: 3000px; background: grey" />
<p><nuxt-link to="/another-long">Another long page</nuxt-link></p> <p>
<NuxtLink to="/another-long">
Another long page
</NuxtLink>
</p>
</div> </div>
</template> </template>