mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-08 23:25:03 -04:00
style: lint fix
This commit is contained in:
parent
10287dd8de
commit
e06e8fae50
1 changed files with 5 additions and 3 deletions
|
@ -19,14 +19,16 @@ const baseConfig = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const input = ref('lorem ipsum dolor sit amet');
|
const input = ref('lorem ipsum dolor sit amet');
|
||||||
const strippedInput = computed(() => input.value.split(" ").map(x => x.replace(baseConfig.stripRegexp, "")).join(" "))
|
const strippedInput = computed(() => input.value.split(' ').map(x => x.replace(baseConfig.stripRegexp, '')).join(' '));
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<c-card>
|
<c-card>
|
||||||
<n-form label-width="120" label-placement="left" :show-feedback="false">
|
<n-form label-width="120" label-placement="left" :show-feedback="false">
|
||||||
<c-input-text v-model:value="input" label="Your string" label-position="left" label-width="120px"
|
<c-input-text
|
||||||
label-align="right" placeholder="Your string..." raw-text />
|
v-model:value="input" label="Your string" label-position="left" label-width="120px"
|
||||||
|
label-align="right" placeholder="Your string..." raw-text
|
||||||
|
/>
|
||||||
|
|
||||||
<n-divider />
|
<n-divider />
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue