cleaning up
Signed-off-by: garionion <github@entr0py.de>
This commit is contained in:
parent
788b45a9a7
commit
89510a0a67
4 changed files with 6 additions and 30 deletions
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="dark:bg-blue-900 min-h-screen">
|
||||||
<v-nav />
|
<v-nav />
|
||||||
<main class="container mx-auto px-2 max-w-7xl sm:px-6">
|
<main class="container mx-auto px-2 max-w-7xl sm:px-6">
|
||||||
<router-view></router-view>
|
<router-view></router-view>
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, ref } from "vue";
|
import { defineComponent } from "vue";
|
||||||
import VNav from "./components/VNav.vue";
|
import VNav from "./components/VNav.vue";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
|
@ -16,10 +16,7 @@ export default defineComponent({
|
||||||
components: {
|
components: {
|
||||||
VNav,
|
VNav,
|
||||||
},
|
},
|
||||||
setup() {
|
setup() {},
|
||||||
const message = ref("Hi");
|
|
||||||
return { message };
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
<template>
|
<template>Mi casa e tu casa</template>
|
||||||
Mi casa e tu casa
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
<template>
|
<template>settierungsmöglichkeiten</template>
|
||||||
settierungsmöglichkeiten
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
|
|
|
@ -1,23 +1,6 @@
|
||||||
import { defineConfig } from "vite";
|
import { defineConfig } from "vite";
|
||||||
import vue from "@vitejs/plugin-vue";
|
import vue from "@vitejs/plugin-vue";
|
||||||
import styleImport from "vite-plugin-style-import";
|
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [
|
plugins: [vue()],
|
||||||
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}`;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue