Indent fix

pull/3958/head
Tuğçe Küçükoğlu 2023-05-12 14:36:37 +03:00
parent b5b7ca4384
commit 321dabc86d
1 changed files with 11 additions and 11 deletions

View File

@ -18,25 +18,25 @@ export default {
<Password v-model="value" toggleMask />`,
options: `
<template>
<div class="card flex justify-content-center">
<Password v-model="value" toggleMask />
</div>
<div class="card flex justify-content-center">
<Password v-model="value" toggleMask />
</div>
</template>
<script>
export default {
data() {
return {
value: null
}
}
data() {
return {
value: null
}
}
};
<\/script>`,
composition: `
<template>
<div class="card flex justify-content-center">
<Password v-model="value" toggleMask />
</div>
<div class="card flex justify-content-center">
<Password v-model="value" toggleMask />
</div>
</template>
<script setup>