24 lines
848 B
Vue
24 lines
848 B
Vue
<script setup lang="ts">
|
|
import slugify from '@sindresorhus/slugify';
|
|
import { withDefaultOnError } from '@/utils/defaults';
|
|
import { useCopy } from '@/composable/copy';
|
|
|
|
const input = ref('');
|
|
const slug = computed(() => withDefaultOnError(() => slugify(input.value), ''));
|
|
const { copy } = useCopy({ source: slug, text: 'Slug copied to clipboard' });
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<c-input-text v-model:value="input" multiline placeholder="Put your string here (ex: My file path)" label="Your string to slugify" autofocus raw-text mb-5 />
|
|
|
|
<c-input-text :value="slug" multiline readonly placeholder="You slug will be generated here (ex: my-file-path)" label="Your slug" mb-5 />
|
|
|
|
<div flex justify-center>
|
|
<c-button :disabled="slug.length === 0" @click="copy">
|
|
Copy slug
|
|
</c-button>
|
|
</div>
|
|
</div>
|
|
</template>
|