mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-10 07:52:23 +03:00
30 lines
505 B
Vue
30 lines
505 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;
|
|
border-bottom: none;
|
|
padding-bottom: 0.75rem;
|
|
}
|
|
</style>
|