mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-14 20:19:35 +01:00
16 lines
196 B
Vue
16 lines
196 B
Vue
<template>
|
|
<ul class="list-disc ml-10 text-gray-600 dark:text-dark-100 text-xl">
|
|
<slot/>
|
|
</ul>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "EnvList"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|