Whalebird-desktop-client-ma.../src/renderer/App.vue

37 lines
542 B
Vue
Raw Normal View History

2018-03-07 14:28:48 +01:00
<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'Whalebird',
created () {
this.$store.dispatch('App/watchShortcutsEvents')
},
destroyed () {
this.$store.dispatch('App/removeShortcutsEvents')
}
2018-03-07 14:28:48 +01:00
}
</script>
<style lang="scss">
body { font-family: 'Noto Sans', sans-serif; }
html, body, #app, #global_header {
height: 100%;
margin: 0;
}
p {
margin: 8px 0;
}
.clearfix:after {
content:" ";
display:block;
clear:both;
}
2018-03-07 14:28:48 +01:00
</style>