mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-13 08:32:26 +03:00
83e59241fe
* bump vuepress * extend default-theme, implement codefund
28 lines
449 B
Vue
28 lines
449 B
Vue
<template>
|
|
<ParentLayout>
|
|
<CodeFund slot="sidebar-top"/>
|
|
</ParentLayout>
|
|
</template>
|
|
|
|
<script>
|
|
import ParentLayout from '@parent-theme/layouts/Layout.vue'
|
|
import CodeFund from '../components/CodeFund.vue'
|
|
|
|
export default {
|
|
components: {
|
|
ParentLayout,
|
|
CodeFund
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
#codefund {
|
|
border-bottom: 1px solid #eaecef;
|
|
min-height: 115px;
|
|
}
|
|
#codefund + .sidebar-links {
|
|
padding-top: 1rem;
|
|
}
|
|
</style>
|