mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 15:26:15 -04:00
refactor: clean imports
This commit is contained in:
parent
d066319b45
commit
724e142222
4 changed files with 5 additions and 14 deletions
|
@ -1,14 +1,9 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { RouterView } from 'vue-router'
|
|
||||||
import { layouts } from './layouts';
|
import { layouts } from './layouts';
|
||||||
import { computed } from 'vue';
|
import { computed } from 'vue';
|
||||||
import { useRoute } from 'vue-router'
|
import { useRoute, RouterView } from 'vue-router'
|
||||||
import { darkThemeOverrides, lightThemeOverrides } from './themes'
|
import { darkThemeOverrides, lightThemeOverrides } from './themes'
|
||||||
import {
|
import { darkTheme, NGlobalStyle, NMessageProvider } from 'naive-ui'
|
||||||
darkTheme,
|
|
||||||
NConfigProvider,
|
|
||||||
NGlobalStyle,
|
|
||||||
} from 'naive-ui'
|
|
||||||
import { useStyleStore } from './stores/style.store';
|
import { useStyleStore } from './stores/style.store';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
|
|
@ -18,10 +18,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useVModel } from '@vueuse/core'
|
import { useVModel, useClipboard } from '@vueuse/core'
|
||||||
import { ContentCopyFilled } from '@vicons/material'
|
import { ContentCopyFilled } from '@vicons/material'
|
||||||
|
|
||||||
import { useClipboard } from '@vueuse/core';
|
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
|
||||||
const props = defineProps<{ value: string, }>()
|
const props = defineProps<{ value: string, }>()
|
||||||
|
|
|
@ -27,8 +27,7 @@
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useStyleStore } from '@/stores/style.store';
|
import { useStyleStore } from '@/stores/style.store';
|
||||||
import { toRefs } from 'vue';
|
import { toRefs, computed } from 'vue';
|
||||||
import { computed } from 'vue';
|
|
||||||
|
|
||||||
const styleStore = useStyleStore()
|
const styleStore = useStyleStore()
|
||||||
const { isMenuCollapsed, isSmallScreen } = toRefs(styleStore)
|
const { isMenuCollapsed, isSmallScreen } = toRefs(styleStore)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { NIcon } from 'naive-ui';
|
import { NIcon, useThemeVars } from 'naive-ui';
|
||||||
import { h, ref, type Component } from 'vue';
|
import { h, ref, type Component } from 'vue';
|
||||||
import { RouterLink, useRoute } from 'vue-router';
|
import { RouterLink, useRoute } from 'vue-router';
|
||||||
import { Heart, Menu2, Home2 } from '@vicons/tabler'
|
import { Heart, Menu2, Home2 } from '@vicons/tabler'
|
||||||
|
@ -7,7 +7,6 @@ import { toolsByCategory } from '@/tools';
|
||||||
import SearchBar from '../components/SearchBar.vue';
|
import SearchBar from '../components/SearchBar.vue';
|
||||||
import { useStyleStore } from '@/stores/style.store';
|
import { useStyleStore } from '@/stores/style.store';
|
||||||
import HeroGradient from '../assets/hero-gradient.svg?component'
|
import HeroGradient from '../assets/hero-gradient.svg?component'
|
||||||
import { useThemeVars } from 'naive-ui'
|
|
||||||
import MenuLayout from '../components/MenuLayout.vue'
|
import MenuLayout from '../components/MenuLayout.vue'
|
||||||
import NavbarButtons from '../components/NavbarButtons.vue'
|
import NavbarButtons from '../components/NavbarButtons.vue'
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue