Sha256: 75101725fed56db7488dc7036268c4dbfdbbf5061b9a0d71186f01f8bcbbdef8
Contents?: true
Size: 593 Bytes
Versions: 21
Compression:
Stored size: 593 Bytes
Contents
<template> <layout :title="$t('sections.listPane.title')"> <section-list 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 SectionList from '@/components/section-list/index.vue' export default { name: 'SectionListPane', components: { Layout, SectionList }, } </script>
Version data entries
21 entries across 21 versions & 1 rubygems