Skip to content

Commit

Permalink
fix(eslint): add component names
Browse files Browse the repository at this point in the history
  • Loading branch information
dargmuesli committed Dec 5, 2021
1 parent 2857f6b commit d308d2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/Link.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import { defineComponent } from '@nuxtjs/composition-api'
export default defineComponent({
name: 'JonasThelemannLink',
props: {
to: {
required: true,
Expand Down
1 change: 1 addition & 0 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import { defineComponent } from '@nuxtjs/composition-api'
export default defineComponent({
name: 'IndexPage',
head() {
return this.$nuxtI18nHead({ addSeoAttributes: true })
},
Expand Down
1 change: 1 addition & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ import { Context } from '@nuxt/types'
const consola = require('consola')
export default defineComponent({
name: 'IndexPage',
async asyncData({ $http }: Context) {
let repoCount: string | null = null
Expand Down

0 comments on commit d308d2a

Please sign in to comment.