Remove the HelloWorld component and default logo

This commit is contained in:
Oliver Davies 2020-09-08 19:45:02 +01:00
parent a757660556
commit 8e07b4da45
3 changed files with 6 additions and 63 deletions

View file

@ -1,17 +1,18 @@
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
{{ title }}
</div>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'App',
components: {
HelloWorld
data() {
return {
title: 'Bristol JS'
}
}
}
</script>