mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-23 12:14:12 +02:00
wip
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user