remove unnecessary imports (#7871)

This commit is contained in:
Johann150 2021-10-16 10:10:19 +02:00 committed by GitHub
parent aee816ced9
commit 345a9d3525
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 28 deletions

View file

@ -12,7 +12,6 @@
<script lang="ts">
import { defineComponent } from 'vue';
import MkPagination from '@client/components/ui/pagination.vue';
import { userPage, acct } from '@client/filters/user';
export default defineComponent({
components: {
@ -43,12 +42,6 @@ export default defineComponent({
this.$refs.list.reload();
}
},
methods: {
userPage,
acct
}
});
</script>

View file

@ -12,7 +12,6 @@
import { defineComponent } from 'vue';
import MkUserInfo from '@client/components/user-info.vue';
import MkPagination from '@client/components/ui/pagination.vue';
import { userPage, acct } from '@client/filters/user';
export default defineComponent({
components: {
@ -51,12 +50,6 @@ export default defineComponent({
user() {
this.$refs.list.reload();
}
},
methods: {
userPage,
acct
}
});
</script>

View file

@ -12,7 +12,6 @@
import { defineComponent } from 'vue';
import MkGalleryPostPreview from '@client/components/gallery-post-preview.vue';
import MkPagination from '@client/components/ui/pagination.vue';
import { userPage, acct } from '@client/filters/user';
export default defineComponent({
components: {
@ -43,12 +42,6 @@ export default defineComponent({
user() {
this.$refs.list.reload();
}
},
methods: {
userPage,
acct
}
});
</script>

View file

@ -10,7 +10,6 @@
import { defineComponent } from 'vue';
import MkPagePreview from '@client/components/page-preview.vue';
import MkPagination from '@client/components/ui/pagination.vue';
import { userPage, acct } from '@client/filters/user';
export default defineComponent({
components: {
@ -41,12 +40,6 @@ export default defineComponent({
user() {
this.$refs.list.reload();
}
},
methods: {
userPage,
acct
}
});
</script>