wikijs-fork/client/components/profile/pages.vue

24 lines
548 B
Vue
Raw Normal View History

2018-05-21 03:27:06 +00:00
<template lang='pug'>
v-container(fluid, fill-height, grid-list-lg)
v-layout(row wrap)
v-flex(xs12)
2020-04-05 23:30:02 +00:00
.profile-header
img.animated.fadeInUp(src='/svg/icon-file.svg', alt='Users', style='width: 80px;')
.profile-header-title
.headline.primary--text.animated.fadeInLeft {{$t('profile:pages.title')}}
.subheading.grey--text.animated.fadeInLeft {{$t('profile:pages.subtitle')}}
2018-05-21 03:27:06 +00:00
</template>
<script>
export default {
data() {
return { }
}
}
</script>
<style lang='scss'>
</style>