This commit is contained in:
syuilo 2018-02-22 23:53:07 +09:00
parent e98626dbbc
commit b5068aae05
14 changed files with 102 additions and 126 deletions

View file

@ -36,21 +36,15 @@ export default Vue.extend({
},
methods: {
showFollowing() {
document.body.appendChild(new MkFollowingWindow({
parent: this,
propsData: {
user: this.user
}
}).$mount().$el);
(this as any).os.new(MkFollowingWindow, {
user: this.user
});
},
showFollowers() {
document.body.appendChild(new MkFollowersWindow({
parent: this,
propsData: {
user: this.user
}
}).$mount().$el);
(this as any).os.new(MkFollowersWindow, {
user: this.user
});
},
mute() {