forked from opentiny/tiny-vue
40 lines
633 B
Vue
40 lines
633 B
Vue
<template>
|
|
<tiny-user-head>
|
|
<div class="content">
|
|
<span>
|
|
<icon-mail></icon-mail>
|
|
</span>
|
|
Mail
|
|
</div>
|
|
</tiny-user-head>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { UserHead } from '@opentiny/vue'
|
|
import { iconMail } from '@opentiny/vue-icon'
|
|
|
|
export default {
|
|
components: {
|
|
TinyUserHead: UserHead,
|
|
IconMail: iconMail()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.content {
|
|
fill: var(--ti-common-color-line-active);
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
font-style: oblique;
|
|
font-weight: 600;
|
|
font-size: 2em;
|
|
}
|
|
|
|
.content svg {
|
|
width: 1.5em;
|
|
height: 1.5em;
|
|
}
|
|
</style>
|