mirror of
https://ceregatti.org/git/daniel/dayzdockerserver.git
synced 2025-05-06 14:21:18 +00:00

Refactor the DOM to allow for "sections". Add our start.sh scripts to /usr/local/bin in the image. Add a config for Vue. Remove globalproperties, as this...sucks.
9 lines
181 B
Vue
9 lines
181 B
Vue
<script setup>
|
|
import Mods from '@/components/Mods.vue'
|
|
import SearchResults from "@/components/SearchResults.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<SearchResults />
|
|
<Mods />
|
|
</template>
|