style: fix various lint issues

This commit is contained in:
Daniel Roe 2020-07-30 00:48:20 +01:00
parent 426cf1b3de
commit fc0d1872e9
10 changed files with 11 additions and 11 deletions

View File

@ -7,4 +7,4 @@ declare module NodeJS {
server: boolean
static: boolean
}
}
}

View File

@ -1,3 +1,3 @@
interface Window {
__NUXT__?: Record<string, any>
}
}

View File

@ -51,4 +51,4 @@ declare module 'vue' {
interface App {
$nuxt: Nuxt
}
}
}

View File

@ -1,6 +1,6 @@
import { createSSRApp } from 'vue'
import plugins from './plugins.client'
import { init } from 'nuxt-app'
import plugins from './plugins.client'
import App from '<%= appPath %>'
async function initApp () {

View File

@ -1,5 +1,5 @@
import sharedPlugins from './plugins'
import preload from 'nuxt-app/plugins/preload'
import sharedPlugins from './plugins'
export default [
...sharedPlugins,

View File

@ -12,4 +12,4 @@ const components: Plugin = function ({ app }) {
app.component('NLink', RouterLink) // TODO: deprecate
}
export default components
export default components

View File

@ -17,4 +17,4 @@ const legacy: Plugin = function ({ app }) {
}
}
export default legacy
export default legacy

View File

@ -2,7 +2,7 @@ import type { Plugin } from 'nuxt/vue-app/types'
const preload: Plugin = function ({ app }) {
app.mixin({
beforeCreate() {
beforeCreate () {
const { _registeredComponents } = this.$nuxt.ssrContext
const { __moduleIdentifier } = this.$options
_registeredComponents.push(__moduleIdentifier)
@ -10,4 +10,4 @@ const preload: Plugin = function ({ app }) {
})
}
export default preload
export default preload

View File

@ -38,4 +38,4 @@ const router: Plugin = function ({ app }) {
}
}
export default router
export default router

View File

@ -14,4 +14,4 @@ const state: Plugin = function ({ app }) {
}
}
export default state
export default state