changed all files to composition API

This commit is contained in:
2023-12-05 11:24:35 +01:00
parent 90a86fb3af
commit de6b7e6eaa
53 changed files with 1244 additions and 1283 deletions

View File

@@ -8,28 +8,22 @@
</template>
<script>
<script setup>
import { ref } from 'vue';
import PageHeader from "./PageHeader.vue";
import Navigationbar from "./Navigationbar.vue";
import Actionbar from "./Actionbar.vue";
export default {
name: "Page",
components: {
PageHeader,
Navigationbar,
Actionbar,
},
data() {
return {
darkMode: true,
};
},
}
const darkMode = ref(true)
</script>
<script>
export default {
name: "default",
}
</script>
<style scoped>
* {