mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-11-11 11:13:43 +08:00
refactor(projects): all file and folder use kebab-case
This commit is contained in:
@@ -1,4 +0,0 @@
|
||||
import CornerTop from './CornerTop.vue';
|
||||
import CornerBottom from './CornerBottom.vue';
|
||||
|
||||
export { CornerTop, CornerBottom };
|
||||
@@ -1,4 +0,0 @@
|
||||
import OtherLogin from './OtherLogin.vue';
|
||||
import OtherAccount from './OtherAccount.vue';
|
||||
|
||||
export { OtherLogin, OtherAccount };
|
||||
@@ -1,8 +1,8 @@
|
||||
import LoginBg from './LoginBg/index.vue';
|
||||
import PwdLogin from './PwdLogin/index.vue';
|
||||
import CodeLogin from './CodeLogin/index.vue';
|
||||
import Register from './Register/index.vue';
|
||||
import ResetPwd from './ResetPwd/index.vue';
|
||||
import BindWechat from './BindWechat/index.vue';
|
||||
import LoginBg from './login-bg/index.vue';
|
||||
import PwdLogin from './pwd-login/index.vue';
|
||||
import CodeLogin from './code-login/index.vue';
|
||||
import Register from './register-user/index.vue';
|
||||
import ResetPwd from './reset-pwd/index.vue';
|
||||
import BindWechat from './bind-wechat/index.vue';
|
||||
|
||||
export { LoginBg, PwdLogin, CodeLogin, Register, ResetPwd, BindWechat };
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
import CornerTop from './corner-top.vue';
|
||||
import CornerBottom from './corner-bottom.vue';
|
||||
|
||||
export { CornerTop, CornerBottom };
|
||||
@@ -0,0 +1,4 @@
|
||||
import OtherLogin from './other-login.vue';
|
||||
import OtherAccount from './other-account.vue';
|
||||
|
||||
export { OtherLogin, OtherAccount };
|
||||
@@ -1,6 +1,6 @@
|
||||
import ProjectIntroduction from './ProjectIntroduction.vue';
|
||||
import ProjectInfo from './ProjectInfo.vue';
|
||||
import ProDependency from './ProDependency.vue';
|
||||
import DevDependency from './DevDependency.vue';
|
||||
import ProjectIntroduction from './project-introduction.vue';
|
||||
import ProjectInfo from './project-info.vue';
|
||||
import ProDependency from './pro-dependency.vue';
|
||||
import DevDependency from './dev-dependency.vue';
|
||||
|
||||
export { ProjectIntroduction, ProjectInfo, ProDependency, DevDependency };
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
import GradientBg from './GradientBg.vue';
|
||||
|
||||
export { GradientBg };
|
||||
@@ -0,0 +1,3 @@
|
||||
import GradientBg from './gradient-bg.vue';
|
||||
|
||||
export { GradientBg };
|
||||
@@ -1,5 +1,5 @@
|
||||
import TopChart from './TopChart/index.vue';
|
||||
import DataCard from './DataCard/index.vue';
|
||||
import BottomPart from './BottomPart/index.vue';
|
||||
import TopChart from './top-chart/index.vue';
|
||||
import DataCard from './data-card/index.vue';
|
||||
import BottomPart from './bottom-part/index.vue';
|
||||
|
||||
export { TopChart, DataCard, BottomPart };
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
import TechnologyCard from './TechnologyCard.vue';
|
||||
import ShortcutsCard from './ShortcutsCard.vue';
|
||||
|
||||
export { TechnologyCard, ShortcutsCard };
|
||||
@@ -1,4 +1,4 @@
|
||||
import WorkbenchHeader from './WorkbenchHeader/index.vue';
|
||||
import WorkbenchMain from './WorkbenchMain/index.vue';
|
||||
import WorkbenchHeader from './workbench-header/index.vue';
|
||||
import WorkbenchMain from './workbench-main/index.vue';
|
||||
|
||||
export { WorkbenchHeader, WorkbenchMain };
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
import TechnologyCard from './technology-card.vue';
|
||||
import ShortcutsCard from './shortcuts-card.vue';
|
||||
|
||||
export { TechnologyCard, ShortcutsCard };
|
||||
@@ -36,9 +36,9 @@ import type { DataTableColumns, PaginationProps } from 'naive-ui';
|
||||
import { fetchUserList } from '@/service';
|
||||
import { useBoolean, useLoading } from '@/hooks';
|
||||
import { genderLabels, userStatusLabels } from '@/constants';
|
||||
import TableActionModal from './components/TableActionModal.vue';
|
||||
import type { ModalType } from './components/TableActionModal.vue';
|
||||
import ColumnSetting from './components/ColumnSetting.vue';
|
||||
import TableActionModal from './components/table-action-modal.vue';
|
||||
import type { ModalType } from './components/table-action-modal.vue';
|
||||
import ColumnSetting from './components/column-setting.vue';
|
||||
|
||||
const { loading, startLoading, endLoading } = useLoading(false);
|
||||
const { bool: visible, setTrue: openModal } = useBoolean();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import BaiduMap from './BaiduMap.vue';
|
||||
import GaodeMap from './GaodeMap.vue';
|
||||
import TencentMap from './TencentMap.vue';
|
||||
import BaiduMap from './baidu-map.vue';
|
||||
import GaodeMap from './gaode-map.vue';
|
||||
import TencentMap from './tencent-map.vue';
|
||||
|
||||
export { BaiduMap, GaodeMap, TencentMap };
|
||||
|
||||
Reference in New Issue
Block a user