mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-08 15:15:02 -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 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>
|
||||
|
||||
<template>
|
||||
<c-card>
|
||||
<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"
|
||||
label-align="right" placeholder="Your string..." raw-text />
|
||||
<c-input-text
|
||||
v-model:value="input" label="Your string" label-position="left" label-width="120px"
|
||||
label-align="right" placeholder="Your string..." raw-text
|
||||
/>
|
||||
|
||||
<n-divider />
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue