2016-09-18 19:51:20 +00:00
|
|
|
<template lang="pug">
|
2016-09-29 11:32:36 +00:00
|
|
|
#app-header
|
|
|
|
|
h1 {{title}}
|
|
|
|
|
ul
|
|
|
|
|
li
|
|
|
|
|
router-link(to='/') Home
|
|
|
|
|
li
|
|
|
|
|
router-link(to='/page') Another Page
|
2016-09-18 19:51:20 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2016-09-29 11:32:36 +00:00
|
|
|
import { mapState } from '../store';
|
2016-09-20 16:58:02 +00:00
|
|
|
|
2016-09-18 19:51:20 +00:00
|
|
|
export default {
|
2016-09-29 11:32:36 +00:00
|
|
|
computed: mapState(['title']),
|
2016-09-18 19:51:20 +00:00
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
|
|
|
<style scoped>
|
|
|
|
|
h1 {
|
|
|
|
|
color: #42b983;
|
|
|
|
|
}
|
|
|
|
|
</style>
|