Sha256: 8823c0c5b850eeda5351395c70efe2a23c9d77ada32f98f9e60e49d6c84e31b3
Contents?: true
Size: 1.27 KB
Versions: 10
Compression:
Stored size: 1.27 KB
Contents
<template> <div class="profile"> <span class="avatar-container"><img class="avatar" :src="avatar" /></span> <div> <span class="h2"><a :href="website">{{ author }}</a></span><br /> <span class="detail"> <a :href="address"><i class="fas fa-book"></i> Digital Log</a> | <i class="icon icon-location"></i> {{ location }} </span><br /> <span class="status">{{ status }}</span> </div> </div> </template> <script> import app from '../configs/app' export default { name: 'Profile', components: { }, data () { return { address: '', location: app.profile.location, author: app.profile.author, status: app.profile.status, avatar: app.profile.avatar, // email: app.profile.email, website: app.profile.website, tag: {}, tags: [], dashboard_1: '', dashboard_2: '', rss: '', atom: '', } }, methods: { }, created() { this.address = app.host; this.dashboard_1 = Window.Config.dasbhoard_1 this.dashboard_2 = Window.Config.dasbhoard_2 this.rss = app.host + '/feed/rss' this.atom = app.host + '/feed/atom' }, filters: { capitalize: function(text) { return text[0].toUpperCase() + text.slice(1); }, fromNow: function(date) { return moment(date).fromNow(); } }, watch: { } } </script> <style scoped> </style>
Version data entries
10 entries across 10 versions & 1 rubygems