refactor(ui): replaced some n-input to c-input (#505)

This commit is contained in:
Corentin THOMASSET
2023-06-25 15:00:50 +02:00
committed by GitHub
parent 5c3bebfe62
commit 05ea545475
20 changed files with 189 additions and 235 deletions

View File

@@ -7,7 +7,7 @@ const text = ref('');
<template>
<c-card>
<n-input v-model:value="text" type="textarea" placeholder="Your text..." rows="5" />
<c-input-text v-model:value="text" multiline placeholder="Your text..." rows="5" />
<div mt-5 flex>
<n-statistic label="Character count" :value="text.length" flex-1 />