Created
September 6, 2018 15:16
-
-
Save BojanKomazec/eae232ebfea64ba96bef1269259770a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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