mirror of
https://github.com/open-goal/jak-project
synced 2026-08-11 19:39:38 -04:00
fab73cab75
* docs: move markdown documentation to be caught by docsify * docs: Initial spike of project status / doc portal * docs: Add searchbar to docsify page * docs: Remove the package-lock.json file, not critical for us * docs: Fix search plugin link * docs: Fix search results colors * docs: Remove the navbar, now redundant.
18 lines
195 B
Vue
18 lines
195 B
Vue
<template>
|
|
<v-app>
|
|
<v-main>
|
|
<router-view />
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "App",
|
|
components: {},
|
|
data: () => ({
|
|
//
|
|
})
|
|
};
|
|
</script>
|