You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
1.2 KiB
Vue

<template>
<div class="hello">
<div class="left">
<h1>{{ title }}</h1>
<ul>
<li v-for="(link, index) in links" v-bind:key="index">
{{ link }}
</li>
</ul>
</div>
<div class="right">
<stats></stats>
</div>
</div>
</template>
<script>
import Stats from '@/components/Stats.vue'
import { mapState } from 'vuex'
export default {
name: 'HelloWorld',
components:{
Stats
},
computed: {
...mapState([
'title',
'links'
]),
// Other stuff
},
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style>
html, #app, .home {
height: 100%;
}
body {
background-color: #F4F4F4;
margin: 0;
height: 100%;
}
.hello {
display: grid;
grid-template-columns: repeat(2, 50%);
grid-template-rows: 100%;
grid-template-areas:
"left right";
height: 100%;
}
.left, .right {
padding: 30px;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
padding: 20px;
background: white;
margin-bottom: 8px;
}
.right {
grid-area: right;
background-color: #E9E9E9;
}
</style>