refactor(client): refactor file name and directory structure

This commit is contained in:
syuilo 2022-09-06 18:21:49 +09:00
parent 0b99ffa8f9
commit a9e13693a5
187 changed files with 247 additions and 247 deletions

View file

@ -41,10 +41,10 @@
import { defineComponent, defineAsyncComponent } from 'vue';
import { host, instanceName } from '@/config';
import * as os from '@/os';
import MkPagination from '@/components/ui/pagination.vue';
import MkPagination from '@/components/MkPagination.vue';
import XSigninDialog from '@/components/MkSigninDialog.vue';
import XSignupDialog from '@/components/MkSignupDialog.vue';
import MkButton from '@/components/ui/button.vue';
import MkButton from '@/components/MkButton.vue';
export default defineComponent({
components: {
@ -93,16 +93,16 @@ export default defineComponent({
methods: {
signin() {
os.popup(XSigninDialog, {
autoSet: true
autoSet: true,
}, {}, 'closed');
},
signup() {
os.popup(XSignupDialog, {
autoSet: true
autoSet: true,
}, {}, 'closed');
}
}
},
},
});
</script>