style: format code for all

This commit is contained in:
LZHD
2021-07-06 01:01:42 +08:00
committed by 踏学吾痕
parent e1200f2dbe
commit 77a1a47110
114 changed files with 7068 additions and 1068 deletions

View File

@@ -1,4 +1,4 @@
import {App, Component} from "vue";
import { App, Component } from "vue";
import {
ElAffix,
ElSkeleton,
@@ -30,7 +30,7 @@ import {
ElPagination,
ElAlert,
ElRadioButton,
ElRadioGroup,
ElRadioGroup
} from "element-plus";
import "element-plus/packages/theme-chalk/src/base.scss";
@@ -64,7 +64,7 @@ const components = [
ElPagination,
ElAlert,
ElRadioButton,
ElRadioGroup,
ElRadioGroup
];
const plugins = [ElLoading];
@@ -77,7 +77,7 @@ export function useElementPlus(app: App) {
components.forEach((component: Component) => {
app.component(component.name, component);
});
plugins.forEach((plugin) => {
plugins.forEach(plugin => {
app.use(plugin);
});
}