refactoring FollowMe flow
This commit is contained in:
@@ -13,7 +13,6 @@
|
||||
</template>
|
||||
<script>
|
||||
import Nav from '~/components/Nav.vue'
|
||||
import FollowMe from '../components/FollowMe'
|
||||
import Snackbar from '../components/Snackbar'
|
||||
import Footer from '../components/Footer'
|
||||
import Confirm from '../components/Confirm'
|
||||
@@ -21,7 +20,7 @@ import { mapState } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'Default',
|
||||
components: { Nav, FollowMe, Snackbar, Footer, Confirm },
|
||||
components: { Nav, Snackbar, Footer, Confirm },
|
||||
computed: mapState(['settings']),
|
||||
created () {
|
||||
this.$vuetify.theme.dark = this.settings['theme.is_dark']
|
||||
@@ -29,4 +28,4 @@ export default {
|
||||
this.$vuetify.theme.themes.light.primary = this.settings['theme.primary']
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
||||
@@ -13,13 +13,12 @@
|
||||
</template>
|
||||
<script>
|
||||
import Nav from '~/components/Nav.vue'
|
||||
import FollowMe from '../components/FollowMe'
|
||||
import Snackbar from '../components/Snackbar'
|
||||
import Footer from '../components/Footer'
|
||||
import Confirm from '../components/Confirm'
|
||||
|
||||
export default {
|
||||
name: 'Default',
|
||||
components: { Nav, FollowMe, Snackbar, Footer, Confirm },
|
||||
components: { Nav, Snackbar, Footer, Confirm }
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user