Sha256: 4272103beeb8b56807263d62a7339e67b6bcf1113e05467c2a77e76bbefdfe66
Contents?: true
Size: 688 Bytes
Versions: 21
Compression:
Stored size: 688 Bytes
Contents
<template> <layout :title="$t('sections.addPane.title')"> <theme-section-list :insertAfter="sectionId" v-if="previewReady" /> <div class="h-full w-full animate-pulse" v-else> <div class="w-full bg-gray-200 rounded h-12 mb-3"></div> <div class="w-full bg-gray-200 rounded h-12 mb-3"></div> <div class="w-full bg-gray-200 rounded h-12 mb-3"></div> </div> </layout> </template> <script> import Layout from '@/layouts/slide-pane.vue' import ThemeSectionList from '@/components/theme-section-list/index.vue' export default { name: 'SectionListPane', components: { Layout, ThemeSectionList }, props: { sectionId: { type: String }, }, } </script>
Version data entries
21 entries across 21 versions & 1 rubygems