Bump eslint-plugin-vue from 7.20.0 to 8.3.0 (#722)

* Bump eslint-plugin-vue from 7.20.0 to 8.3.0

Bumps [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) from 7.20.0 to 8.3.0.
- [Release notes](https://github.com/vuejs/eslint-plugin-vue/releases)
- [Commits](https://github.com/vuejs/eslint-plugin-vue/compare/v7.20.0...v8.3.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-vue
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Refractor component names.

For vue/multi-word-component-names

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: FireMasterK <20838718+FireMasterK@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2022-01-13 05:12:06 +00:00
committed by GitHub
parent fc4978ec03
commit 5d8ae14db7
11 changed files with 68 additions and 34 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div class="w-full min-h-screen px-1vw reset" :class="[theme]">
<Navigation />
<NavBar />
<router-view v-slot="{ Component }">
<keep-alive :max="5">
<component :is="Component" :key="$route.fullPath" />
@@ -20,10 +20,10 @@
</template>
<script>
import Navigation from "@/components/Navigation.vue";
import NavBar from "@/components/NavBar.vue";
export default {
components: {
Navigation,
NavBar,
},
mounted() {
if (window.location.pathname === "/" || window.location.pathname.length == 0)