wip
This commit is contained in:
@@ -10,6 +10,7 @@ import reactionsViewer from './reactions-viewer.vue';
|
||||
import time from './time.vue';
|
||||
import images from './images.vue';
|
||||
import uploader from './uploader.vue';
|
||||
import specialMessage from './special-message.vue';
|
||||
|
||||
Vue.component('mk-signin', signin);
|
||||
Vue.component('mk-signup', signup);
|
||||
@@ -21,3 +22,4 @@ Vue.component('mk-reactions-viewer', reactionsViewer);
|
||||
Vue.component('mk-time', time);
|
||||
Vue.component('mk-images', images);
|
||||
Vue.component('mk-uploader', uploader);
|
||||
Vue.component('mk-special-message', specialMessage);
|
||||
|
||||
@@ -15,10 +15,10 @@ export default Vue.extend({
|
||||
},
|
||||
computed: {
|
||||
d(): number {
|
||||
return now.getDate();
|
||||
return this.now.getDate();
|
||||
},
|
||||
m(): number {
|
||||
return now.getMonth() + 1;
|
||||
return this.now.getMonth() + 1;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
@click="wapi_setAvatar"
|
||||
alt="avatar"
|
||||
title="クリックでアバター編集"
|
||||
:v-user-preview={ I.id }
|
||||
v-user-preview={ I.id }
|
||||
/>
|
||||
<a class="name" href={ '/' + I.username }>{ I.name }</a>
|
||||
<p class="username">@{ I.username }</p>
|
||||
|
||||
Reference in New Issue
Block a user