mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-31 23:11:15 +00:00
23 lines
385 B
Vue
23 lines
385 B
Vue
|
|
<!-- Entry point component for the entire app -->
|
||
|
|
|
||
|
|
<template lang="pug">
|
||
|
|
#app.ui.fluid.container
|
||
|
|
app-header
|
||
|
|
router-view.view
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import AppHeader from './components/appHeader';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
AppHeader,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="less">
|
||
|
|
// Load CSS that doesn't belong to any specific component
|
||
|
|
@import './assets/less/index';
|
||
|
|
</style>
|