You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/oaf/src/App.vue

40 lines
711 B
Vue

5 years ago
<template>
<v-app>
<v-app-bar
app
color="primary"
dark
>
<div class="d-flex align-center">
<one-icon style="color: aqua;font-size: 56px">glassdoor</one-icon>
<span class="font-italic font-weight-bold" style="font-size: 20px">统一认证</span>
5 years ago
</div>
<v-spacer></v-spacer>
</v-app-bar>
<v-main>
4 years ago
<router-view></router-view>
5 years ago
</v-main>
</v-app>
</template>
<script lang="ts">
import Vue from 'vue'
import util from '@/libs/util'
5 years ago
export default Vue.extend({
name: 'App',
4 years ago
components: {},
5 years ago
data: () => ({
//
4 years ago
}),
beforeCreate() {
util.title('统一认证')
this.$store.dispatch('fetchSelf')
4 years ago
}
5 years ago
})
</script>