NEW
This commit is contained in:
15
frontend/sec_/views/AboutView.vue
Normal file
15
frontend/sec_/views/AboutView.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<div class="about">
|
||||
<h1>This is an about page</h1>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
@media (min-width: 1024px) {
|
||||
.about {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
18
frontend/sec_/views/HomeView.vue
Normal file
18
frontend/sec_/views/HomeView.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<HelloWorld />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { defineComponent } from 'vue';
|
||||
|
||||
// Components
|
||||
import HelloWorld from '../components/HelloWorld.vue';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'HomeView',
|
||||
|
||||
components: {
|
||||
HelloWorld,
|
||||
},
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user