platypush/platypush/backend/http/webapp/src/App.vue

63 lines
1.2 KiB
Vue

<template>
<router-view />
</template>
<script>
import Utils from "@/Utils";
import { bus } from "@/bus";
export default {
name: 'App',
mixins: [Utils],
data() {
return {
config: {},
}
},
methods: {
onNotification(notification) {
this.$refs.notifications.create(notification)
},
async initConfig() {
this.config = await this.request('config.get')
}
},
created() {
this.initConfig()
},
mounted() {
bus.on('notification-create', this.onNotification)
},
}
</script>
<!--suppress CssUnusedSymbol -->
<style lang="scss">
$fa-font-path: "~@fortawesome/fontawesome-free/webfonts";
@import "~@fortawesome/fontawesome-free/scss/fontawesome";
@import "~@fortawesome/fontawesome-free/scss/solid"; // fas
@import "~@fortawesome/fontawesome-free/scss/regular"; // far
@import "~@fortawesome/fontawesome-free/scss/brands"; // fab
html, body {
width: 100%;
height: 100%;
margin: 0;
overflow: auto;
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 100%;
height: 100%;
color: #2c3e50;
}
</style>