docs/features/index.md
This is a list of all the individual features that Slidev provides. Each feature can be used independently and is optional.
You can also read <LinkInline link="guide/" /> to learn the features by topic.
<ClientOnly> <div flex items-center mt-6 gap-6> <div flex items-center rounded-md px3 py2 gap-2 border-2 border-solid border-transparent class="bg-$vp-c-bg-alt focus-within:border-color-$vp-c-brand" > <div class="i-carbon:search" text-sm op-80 /> <input v-model="search" type="search" text-base placeholder="Search features..." /> </div> <div v-if="tagsArr.length" flex items-center gap-1 > <div class="i-carbon:tag" text-sm mr-1 op-80 /> <FeatureTag v-for="tag in tagsArr" :key="tag" :tag removable @remove="removeTag(tag)"/> </div> </div> <FeaturesOverview :features="filteredFeatures" /> <div v-if="filteredFeatures.length === 0" class="w-full mt-6 op-80 flex flex-col items-center"> No results found <button class="block select-button flex-inline gap-1 items-center px-2 py-1 hover:bg-gray-400/10 rounded" @click="resetFilters()"> <div class="i-carbon:filter-remove" /> Clear Filters </button> </div> </ClientOnly> <style> .all-features-page .VPDoc > .container > .content { max-width: 72vw !important; } </style> <style> :root { overflow-y: scroll; } </style>