Code representation style fixes

This commit is contained in:
Tuğçe Küçükoğlu 2023-09-22 15:54:14 +03:00
parent 11051fc020
commit e0fe133189
863 changed files with 4545 additions and 2404 deletions

View file

@ -17,11 +17,13 @@ export default {
return {
value: null,
code: {
basic: `<span class="p-float-label">
basic: `
<span class="p-float-label">
<InputText id="username" v-model="value" />
<label for="username">Username</label>
</span>`,
options: `<template>
options: `
<template>
<div class="card flex justify-content-center">
<span class="p-float-label">
<InputText id="username" v-model="value" />
@ -39,8 +41,9 @@ export default {
}
}
<\/script>
`,
composition: `<template>
`,
composition: `
<template>
<div class="card flex justify-content-center">
<span class="p-float-label">
<InputText id="username" v-model="value" />
@ -54,7 +57,7 @@ import { ref } from 'vue';
const value = ref(null);
<\/script>
`
`
}
};
}