Created
April 10, 2019 09:54
-
-
Save earth774/35574d97f224e0df0ab14be35d4faceb to your computer and use it in GitHub Desktop.
Code page HelloWorld.vue
This file contains 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 class="hello"> | |
<h1>{{ msg }}</h1> | |
<button>Google</button> | |
<button>Facebook</button> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: "HelloWorld", | |
props: { | |
msg: String | |
} | |
}; | |
</script> | |
<!-- Add "scoped" attribute to limit CSS to this component only --> | |
<style scoped> | |
h3 { | |
margin: 40px 0 0; | |
} | |
ul { | |
list-style-type: none; | |
padding: 0; | |
} | |
li { | |
display: inline-block; | |
margin: 0 10px; | |
} | |
a { | |
color: #42b983; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment