You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
495 B
27 lines
495 B
<template>
|
|
<q-page class="flex flex-center flex-">
|
|
<div v-if="username" class="q-py-lg">
|
|
<GlobalSearch />
|
|
<Feed />
|
|
</div>
|
|
</q-page>
|
|
</template>
|
|
|
|
<script>
|
|
import Feed from '../components/Feed.vue'
|
|
import GlobalSearch from '../components/GlobalSearch.vue'
|
|
export default {
|
|
name: 'DashboardPage',
|
|
components: { Feed, GlobalSearch },
|
|
computed: {
|
|
username () {
|
|
return this.$store.state.core.username
|
|
}
|
|
},
|
|
mounted () {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|
|
|