mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Code representation style fixes
This commit is contained in:
parent
11051fc020
commit
e0fe133189
863 changed files with 4545 additions and 2404 deletions
|
@ -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>
|
||||
`
|
||||
`
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue