Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit

Permalink
fix(templates): use PascalCase component names in single-file components
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkdo committed May 29, 2021
1 parent 8c27b44 commit ed17e67
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@
v-for="(item, key) of items"
:key="key"
>
<nuxt-link
<NuxtLink
:to="item.to"
exact-active-class="is-active"
>
<b-icon :icon="item.icon" /> {{ item.title }}
</nuxt-link>
</NuxtLink>
</li>
</ul>
</aside>

<div class="container column is-10">
<nuxt />
<Nuxt />
</div>
</section>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<nuxt />
<Nuxt />
</template>

<style>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
</v-app-bar>
<v-main>
<v-container>
<nuxt />
<Nuxt />
</v-container>
</v-main>
<v-navigation-drawer
Expand Down

0 comments on commit ed17e67

Please sign in to comment.