Initial Vue.js project skeleton.

This commit is contained in:
Jonathan Bernard
2019-02-24 06:56:06 -07:00
parent 066e70b4bf
commit 1b91926d3a
41 changed files with 16147 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>
+6
View File
@@ -0,0 +1,6 @@
<template>
<div class="home">
</div>
</template>
<script lang="ts" src="./home.ts"></script>
+6
View File
@@ -0,0 +1,6 @@
import { Component, Vue } from 'vue-property-decorator';
@Component({
components: { }
})
export default class Home extends Vue {}