mjz update
This commit is contained in:
99
vdoing/global-components/CodeGroup.vue
Normal file
99
vdoing/global-components/CodeGroup.vue
Normal file
@@ -0,0 +1,99 @@
|
||||
<template>
|
||||
<div class="theme-code-group">
|
||||
<div class="theme-code-group__nav">
|
||||
<ul class="theme-code-group__ul">
|
||||
<li
|
||||
v-for="(tab, i) in codeTabs"
|
||||
:key="tab.title"
|
||||
class="theme-code-group__li"
|
||||
>
|
||||
<button
|
||||
class="theme-code-group__nav-tab"
|
||||
:class="{
|
||||
'theme-code-group__nav-tab-active': i === activeCodeTabIndex
|
||||
}"
|
||||
@click="changeCodeTab(i)"
|
||||
>
|
||||
{{ tab.title }}
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<slot />
|
||||
<pre v-if="codeTabs.length < 1" class="pre-blank">
|
||||
// Make sure to add code blocks to your code group</pre
|
||||
>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'CodeGroup',
|
||||
data () {
|
||||
return {
|
||||
codeTabs: [],
|
||||
activeCodeTabIndex: -1
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
activeCodeTabIndex (index) {
|
||||
this.codeTabs.forEach(tab => {
|
||||
tab.elm.classList.remove('theme-code-block__active')
|
||||
})
|
||||
this.codeTabs[index].elm.classList.add('theme-code-block__active')
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.codeTabs = (this.$slots.default || []).filter(slot => Boolean(slot.componentOptions)).map((slot, index) => {
|
||||
if (slot.componentOptions.propsData.active === '') {
|
||||
this.activeCodeTabIndex = index
|
||||
}
|
||||
|
||||
return {
|
||||
title: slot.componentOptions.propsData.title,
|
||||
elm: slot.elm
|
||||
}
|
||||
})
|
||||
|
||||
if (this.activeCodeTabIndex === -1 && this.codeTabs.length > 0) {
|
||||
this.activeCodeTabIndex = 0
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
changeCodeTab (index) {
|
||||
this.activeCodeTabIndex = index
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="stylus" scoped>
|
||||
.theme-code-group, .theme-code-group__nav
|
||||
background-color var(--codeBg)
|
||||
padding-bottom 22px
|
||||
border-radius 6px
|
||||
padding-left 10px
|
||||
padding-top 10px
|
||||
.theme-code-group__nav
|
||||
margin-bottom -35px
|
||||
.theme-code-group__ul
|
||||
margin auto 0
|
||||
padding-left 0
|
||||
display inline-flex
|
||||
list-style none
|
||||
.theme-code-group__li, .theme-code-group__nav-tab
|
||||
border 0
|
||||
padding 5px
|
||||
cursor pointer
|
||||
background-color transparent
|
||||
font-size 0.85em
|
||||
line-height 1.4
|
||||
color var(--codeColor)
|
||||
font-weight 600
|
||||
opacity 0.85
|
||||
.theme-code-group__nav-tab-active
|
||||
border-bottom $accentColor 1px solid
|
||||
opacity 1
|
||||
.pre-blank
|
||||
color $accentColor
|
||||
</style>
|
||||
Reference in New Issue
Block a user