feat: 修改 libs 为 plugins 目录
parent
226cdffea7
commit
4a97226826
|
|
@ -5,7 +5,7 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { dayjs } from "@/libs/dayjs";
|
||||
import dayjs from "dayjs";
|
||||
import { PropType } from "vue";
|
||||
import { FontRender } from "../font";
|
||||
import { Date } from "./interface";
|
||||
|
|
|
|||
|
|
@ -5,11 +5,10 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { dayjs } from '@/libs/dayjs';
|
||||
import { onMounted, onUnmounted, ref } from 'vue';
|
||||
import dayjs from 'dayjs';
|
||||
import { PropType, onMounted, onUnmounted, ref } from 'vue';
|
||||
import { FontRender } from '../font';
|
||||
import { Time } from './interface';
|
||||
import { PropType } from 'vue';
|
||||
|
||||
const props = defineProps({
|
||||
data: {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { dayjs } from '@/libs/dayjs';
|
||||
import { Avatar } from '@arco-design/web-vue';
|
||||
import dayjs from 'dayjs';
|
||||
import { TableColumn } from '../hooks/useTableColumn';
|
||||
|
||||
export function useUpdateColumn(extra: TableColumn = {}): TableColumn {
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
import { createApp } from 'vue';
|
||||
import App from '@/App.vue';
|
||||
import { api } from '@/api';
|
||||
import { dayjs } from '@/plugins/dayjs';
|
||||
import { NProgress } from '@/plugins/nprogress';
|
||||
import { router } from '@/router';
|
||||
import { store } from '@/store';
|
||||
import { style } from '@/styles';
|
||||
import { dayjs } from '@/libs/dayjs';
|
||||
import { NProgress } from '@/libs/nprogress';
|
||||
import { api } from '@/api';
|
||||
import { createApp } from 'vue';
|
||||
|
||||
const run = async () => {
|
||||
const app = createApp(App);
|
||||
|
|
|
|||
|
|
@ -52,10 +52,10 @@
|
|||
|
||||
<script lang="ts" setup>
|
||||
import { api } from '@/api';
|
||||
import { dayjs } from '@/libs/dayjs';
|
||||
import { useAppStore } from '@/store/app';
|
||||
import { useUserStore } from '@/store/user';
|
||||
import { FieldRule, Form, Message, Modal, Notification } from '@arco-design/web-vue';
|
||||
import dayjs from 'dayjs';
|
||||
import { reactive } from 'vue';
|
||||
|
||||
defineOptions({ name: 'LoginPage' });
|
||||
|
|
|
|||
Loading…
Reference in New Issue