Files
freeplanet/src/components/layout/drawer/menuOne.vue

70 lines
2.0 KiB
Vue
Raw Normal View History

2018-10-12 16:42:54 +02:00
<template>
<div class="list no-border platform-delimiter light-paragraph">
<template v-for="(parent, index) in links">
<div class="list-label cursor-pointer underline" @click="parent.show = !parent.show">{{replaceUnderlineToSpace(index)}}</div>
<template v-for="child in parent.routes">
<transition name="menu">
<div v-show="parent.show">
<router-link :to="child.route" exact tag="div" class="item item-link drawer-closer cursor-pointer" >
<i :class="child.faIcon" class="item-primary"></i>
<div class="item-content">{{child.name}}</div>
</router-link>
</div>
</transition>
</template>
<hr>
</template>
<div class="list-label cursor-pointer">Quasar Ready UI</div>
<a href="http://quasar-framework.org/quasar-play/android/index.html#/showcase" target="_blank"
class="item item-link drawer-closer cursor-pointer text-black" >
<i class="fa fa-puzzle-piece item-primary" ></i>
<div class="item-content">Components (55+)</div>
</a>
</div>
</template>
<script>
export default {
props: ['links'],
watch: {
'$route.path' () {
Object.keys(this.links).forEach(parentName => { this.setParentVisibilityBasedOnRoute(this.links[parentName]) })
}
},
computed: {
currentRoutePath () {
return this.$route.path
}
},
methods: {
setParentVisibilityBasedOnRoute (parent) {
parent.routes.forEach(item => {
if (this.$route.path === item.route) {
parent.show = true
return
}
})
},
replaceUnderlineToSpace (text) {
while (text.indexOf('_') !== -1) {
text = text.replace('_', ' ')
}
return text
}
}
}
</script>
<style scoped>
.list-label:first-child{
line-height: 50px;
}
.router-link-active {
color: #027be3;
background-color: #dadada !important;
border-right: 2px solid #027be3;
}
.router-link-active .item-primary{
color: #027be3;
}
</style>