cleaning up
Signed-off-by: garionion <github@entr0py.de>
This commit is contained in:
parent
788b45a9a7
commit
89510a0a67
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="dark:bg-blue-900 min-h-screen">
|
||||
<v-nav />
|
||||
<main class="container mx-auto px-2 max-w-7xl sm:px-6">
|
||||
<router-view></router-view>
|
||||
|
@ -8,7 +8,7 @@
|
|||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, ref } from "vue";
|
||||
import { defineComponent } from "vue";
|
||||
import VNav from "./components/VNav.vue";
|
||||
|
||||
export default defineComponent({
|
||||
|
@ -16,10 +16,7 @@ export default defineComponent({
|
|||
components: {
|
||||
VNav,
|
||||
},
|
||||
setup() {
|
||||
const message = ref("Hi");
|
||||
return { message };
|
||||
},
|
||||
setup() {},
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
<template>
|
||||
Mi casa e tu casa
|
||||
</template>
|
||||
<template>Mi casa e tu casa</template>
|
||||
|
||||
<script lang="ts">
|
||||
export default {
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
<template>
|
||||
settierungsmöglichkeiten
|
||||
</template>
|
||||
<template>settierungsmöglichkeiten</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
|
|
@ -1,23 +1,6 @@
|
|||
import { defineConfig } from "vite";
|
||||
import vue from "@vitejs/plugin-vue";
|
||||
import styleImport from "vite-plugin-style-import";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
vue(),
|
||||
styleImport({
|
||||
libs: [
|
||||
{
|
||||
libraryName: "element-plus",
|
||||
resolveStyle: (name) => {
|
||||
name = name.slice(3);
|
||||
return `element-plus/packages/theme-chalk/src/${name}.scss`;
|
||||
},
|
||||
resolveComponent: (name) => {
|
||||
return `element-plus/lib/${name}`;
|
||||
},
|
||||
},
|
||||
],
|
||||
}),
|
||||
],
|
||||
plugins: [vue()],
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue