Skip to content

Instantly share code, notes, and snippets.

@BojanKomazec
Created September 6, 2018 15:16
Show Gist options
  • Save BojanKomazec/eae232ebfea64ba96bef1269259770a4 to your computer and use it in GitHub Desktop.
Save BojanKomazec/eae232ebfea64ba96bef1269259770a4 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>
<style>
...
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment