add eslint working conf
This commit is contained in:
@@ -11,30 +11,31 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Nav from "./Nav";
|
||||
import TopBar from "./TopBar";
|
||||
import { mapGetters } from 'vuex'
|
||||
import Nav from './Nav'
|
||||
import TopBar from './TopBar'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: "App",
|
||||
components : {
|
||||
Nav, TopBar
|
||||
},
|
||||
mounted() {
|
||||
this.$store.dispatch('fetchAuthUser')
|
||||
},
|
||||
created() {
|
||||
this.$store.dispatch('setPageTitle', this.$route.meta.title)
|
||||
},
|
||||
computed: {
|
||||
...mapGetters({
|
||||
authUser: 'authUser',
|
||||
})
|
||||
},
|
||||
watch: {
|
||||
$route(to, from) {
|
||||
this.$store.dispatch('setPageTitle', to.meta.title)
|
||||
}
|
||||
export default {
|
||||
name: 'App',
|
||||
components : {
|
||||
Nav, TopBar
|
||||
},
|
||||
mounted() {
|
||||
this.$store.dispatch('fetchAuthUser')
|
||||
},
|
||||
created() {
|
||||
this.$store.dispatch('setPageTitle', this.$route.meta.title)
|
||||
},
|
||||
computed: {
|
||||
...mapGetters({
|
||||
authUser: 'authUser',
|
||||
})
|
||||
},
|
||||
watch: {
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
$route(to, from) {
|
||||
this.$store.dispatch('setPageTitle', to.meta.title)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user