sk_fems_ui commit
This commit is contained in:
20
layouts/landing.vue
Normal file
20
layouts/landing.vue
Normal file
@ -0,0 +1,20 @@
|
||||
<template>
|
||||
<v-app :class="`${isDarkMode ? 'dark-mode' : 'light-mode'}`">
|
||||
<nuxt />
|
||||
<!-- <v-footer>
|
||||
<span>© 2022. SK C&C all rights reserved.</span>
|
||||
</v-footer> -->
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState } from 'vuex';
|
||||
export default {
|
||||
name: 'landing',
|
||||
computed: {
|
||||
...mapState({
|
||||
isDarkMode: 'isDarkMode',
|
||||
}),
|
||||
},
|
||||
};
|
||||
</script>
|
Reference in New Issue
Block a user