remove unnecessary imports (#7871)
This commit is contained in:
parent
aee816ced9
commit
345a9d3525
4 changed files with 0 additions and 28 deletions
|
@ -12,7 +12,6 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
import MkPagination from '@client/components/ui/pagination.vue';
|
import MkPagination from '@client/components/ui/pagination.vue';
|
||||||
import { userPage, acct } from '@client/filters/user';
|
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
components: {
|
||||||
|
@ -43,12 +42,6 @@ export default defineComponent({
|
||||||
this.$refs.list.reload();
|
this.$refs.list.reload();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
|
||||||
userPage,
|
|
||||||
|
|
||||||
acct
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
import MkUserInfo from '@client/components/user-info.vue';
|
import MkUserInfo from '@client/components/user-info.vue';
|
||||||
import MkPagination from '@client/components/ui/pagination.vue';
|
import MkPagination from '@client/components/ui/pagination.vue';
|
||||||
import { userPage, acct } from '@client/filters/user';
|
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
components: {
|
||||||
|
@ -51,12 +50,6 @@ export default defineComponent({
|
||||||
user() {
|
user() {
|
||||||
this.$refs.list.reload();
|
this.$refs.list.reload();
|
||||||
}
|
}
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
userPage,
|
|
||||||
|
|
||||||
acct
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
import MkGalleryPostPreview from '@client/components/gallery-post-preview.vue';
|
import MkGalleryPostPreview from '@client/components/gallery-post-preview.vue';
|
||||||
import MkPagination from '@client/components/ui/pagination.vue';
|
import MkPagination from '@client/components/ui/pagination.vue';
|
||||||
import { userPage, acct } from '@client/filters/user';
|
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
components: {
|
||||||
|
@ -43,12 +42,6 @@ export default defineComponent({
|
||||||
user() {
|
user() {
|
||||||
this.$refs.list.reload();
|
this.$refs.list.reload();
|
||||||
}
|
}
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
userPage,
|
|
||||||
|
|
||||||
acct
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
import MkPagePreview from '@client/components/page-preview.vue';
|
import MkPagePreview from '@client/components/page-preview.vue';
|
||||||
import MkPagination from '@client/components/ui/pagination.vue';
|
import MkPagination from '@client/components/ui/pagination.vue';
|
||||||
import { userPage, acct } from '@client/filters/user';
|
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
components: {
|
||||||
|
@ -41,12 +40,6 @@ export default defineComponent({
|
||||||
user() {
|
user() {
|
||||||
this.$refs.list.reload();
|
this.$refs.list.reload();
|
||||||
}
|
}
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
userPage,
|
|
||||||
|
|
||||||
acct
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue