mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-13 08:32:26 +03:00
23 lines
305 B
Vue
23 lines
305 B
Vue
<template>
|
|
<ParentLayout></ParentLayout>
|
|
</template>
|
|
|
|
<script>
|
|
import ParentLayout from "@parent-theme/layouts/Layout.vue";
|
|
|
|
export default {
|
|
components: {
|
|
ParentLayout,
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
#ads {
|
|
border-bottom: 1px solid #eaecef;
|
|
}
|
|
#ads + .sidebar-links {
|
|
padding-top: 1rem;
|
|
}
|
|
</style>
|