Skip to content

Instantly share code, notes, and snippets.

@basebandit
Created June 23, 2018 12:33
Show Gist options
  • Save basebandit/711b0c610ec51bb2da06a99f0ed3ecf6 to your computer and use it in GitHub Desktop.
Save basebandit/711b0c610ec51bb2da06a99f0ed3ecf6 to your computer and use it in GitHub Desktop.
<template>
<div class="hello">
<h1>{{ msg }}</h1>
<h2>Essential Links</h2>
</div>
</template>
<script>
export default {
name: 'Memory',
data () {
return {
msg: this.$route.params.title
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h1,
h2 {
font-weight: normal;
}
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