WIP UI work.

This commit is contained in:
Jonathan Bernard 2019-02-24 06:56:57 -07:00
parent 62eaf2ec2a
commit 7f93ca90da
3 changed files with 11 additions and 0 deletions

5
web/src/views/NavBar.vue Normal file
View File

@ -0,0 +1,5 @@
<template>
</template>
<script lang="ts" src="./nav-bar.ts"></script>
<style lang="scss" src="./nav-bar.scss"></style>

View File

6
web/src/views/nav-bar.ts Normal file
View File

@ -0,0 +1,6 @@
import { Component, Vue } from 'vue-property-decorator';
@Component({
components: {
}
})
export default class NavBar extends Vue {}