refactoring FollowMe flow

This commit is contained in:
les
2021-05-19 16:17:48 +02:00
parent 05d0032df4
commit 29986f3266
7 changed files with 40 additions and 33 deletions

View File

@@ -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>

View File

@@ -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>