InboxScreen start (replace HelloWorld)

This commit is contained in:
Jeffrey Biles
2020-03-17 11:21:21 -07:00
parent cd3eb66acd
commit 913092a419
3 changed files with 18 additions and 62 deletions

View File

@@ -1,17 +1,16 @@
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
<InboxScreen />
</div>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue';
import InboxScreen from './components/InboxScreen.vue';
export default {
name: 'App',
components: {
HelloWorld,
InboxScreen,
},
};
</script>