mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-17 23:16:43 +08:00
30 lines
655 B
Vue
30 lines
655 B
Vue
<template>
|
|
<v-list-item class="mb-0 justify-space-between pl-3">
|
|
<v-list-item-avatar>
|
|
<v-img
|
|
:src="
|
|
require('@/assets/vmd.svg')"
|
|
/>
|
|
</v-list-item-avatar>
|
|
|
|
<v-list-item-content class="pl-2">
|
|
<v-list-item-title class="text-h3">
|
|
<strong class="mr-1 font-weight-black">Yi</strong>
|
|
|
|
<span class="primary--text">Framework</span>
|
|
</v-list-item-title>
|
|
</v-list-item-content>
|
|
</v-list-item>
|
|
</template>
|
|
|
|
<script>
|
|
// Utilities
|
|
// import { get } from 'vuex-pathify'
|
|
|
|
export default {
|
|
name: 'DefaultDrawerHeader',
|
|
|
|
// computed: { version: get('app/version') },
|
|
}
|
|
</script>
|