Initial Vue.js project skeleton.
This commit is contained in:
5
web/src/views/About.vue
Normal file
5
web/src/views/About.vue
Normal file
@ -0,0 +1,5 @@
|
||||
<template>
|
||||
<div class="about">
|
||||
<h1>This is an about page</h1>
|
||||
</div>
|
||||
</template>
|
6
web/src/views/Home.vue
Normal file
6
web/src/views/Home.vue
Normal file
@ -0,0 +1,6 @@
|
||||
<template>
|
||||
<div class="home">
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./home.ts"></script>
|
6
web/src/views/home.ts
Normal file
6
web/src/views/home.ts
Normal file
@ -0,0 +1,6 @@
|
||||
import { Component, Vue } from 'vue-property-decorator';
|
||||
|
||||
@Component({
|
||||
components: { }
|
||||
})
|
||||
export default class Home extends Vue {}
|
Reference in New Issue
Block a user