cleaning up

Signed-off-by: garionion <github@entr0py.de>
This commit is contained in:
garionion 2021-04-03 17:43:07 +02:00
parent 788b45a9a7
commit 89510a0a67
Signed by: garionion
GPG Key ID: 53352FA607FA681A
4 changed files with 6 additions and 30 deletions

View File

@ -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>

View File

@ -1,6 +1,4 @@
<template>
Mi casa e tu casa
</template>
<template>Mi casa e tu casa</template>
<script lang="ts">
export default {

View File

@ -1,6 +1,4 @@
<template>
settierungsmöglichkeiten
</template>
<template>settierungsmöglichkeiten</template>
<script>
export default {

View File

@ -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()],
});