Skip to content

Instantly share code, notes, and snippets.

@Jantho1990
Created June 17, 2018 01:38
Show Gist options
  • Save Jantho1990/7f0b39fb1018892bdca256bbe36c1c8d to your computer and use it in GitHub Desktop.
Save Jantho1990/7f0b39fb1018892bdca256bbe36c1c8d to your computer and use it in GitHub Desktop.
StarRating Vue -- 1b
<template>
<div id="app">
<img src="./assets/logo.png">
<HelloWorld/>
</div>
</template>
<script>
import HelloWorld from './components/HelloWorld'
export default {
name: 'App',
components: {
HelloWorld
}
}
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment