mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
Initial commit
Copy of another TODO website
This commit is contained in:
27
src/App.vue
Normal file
27
src/App.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<script setup lang="ts">
|
||||
import { RouterLink, RouterView } from 'vue-router'
|
||||
import Header from './components/Header.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<header>
|
||||
<Header :links="[['google', 'a'], ['yahoo', 'a'], ['Yandex', 'a']]"></Header>
|
||||
</header>
|
||||
|
||||
<div id="view_content">
|
||||
<RouterView />
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
#view_content{
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user