Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Last active July 23, 2020 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/1237468ecd60f62fa925a807c9494735 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/1237468ecd60f62fa925a807c9494735 to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</div>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'App',
components: {
HelloWorld
}
}
</script>
<template>
<img alt="Vue logo" src="./assets/logo.png" />
<HelloWorld msg="Hello Vue 3.0 + Vite" />
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'App',
components: {
HelloWorld
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment