mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
31 lines
485 B
Vue
31 lines
485 B
Vue
<script lang="ts" setup>
|
|
defineProps<{
|
|
title: string;
|
|
items: string[];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="titled-list">
|
|
<p v-text="title" />
|
|
<ul>
|
|
<li v-for="item in items" :key="item" v-n8n-html="item" class="titled-list-item" />
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.titled-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.titled-list-item {
|
|
list-style: none;
|
|
padding-left: var(--spacing-3xs);
|
|
&::before {
|
|
content: '- ';
|
|
}
|
|
}
|
|
}
|
|
</style>
|