Indent fixes
parent
7c609f7aed
commit
e9663cc853
|
@ -64,9 +64,9 @@ const value1 = ref('Off');
|
||||||
const value2 = ref();
|
const value2 = ref();
|
||||||
const options1 = ref(['Off', 'On']);
|
const options1 = ref(['Off', 'On']);
|
||||||
const options2 = ref([
|
const options2 = ref([
|
||||||
{ name: 'Option 1', value: 1 },
|
{ name: 'Option 1', value: 1 },
|
||||||
{ name: 'Option 2', value: 2, constant: true }
|
{ name: 'Option 2', value: 2, constant: true }
|
||||||
]);
|
]);
|
||||||
<\/script>
|
<\/script>
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,10 +56,10 @@ import { ref } from 'vue';
|
||||||
|
|
||||||
const value = ref(null);
|
const value = ref(null);
|
||||||
const options = ref([
|
const options = ref([
|
||||||
{ name: 'Option 1', value: 1 },
|
{ name: 'Option 1', value: 1 },
|
||||||
{ name: 'Option 2', value: 2 },
|
{ name: 'Option 2', value: 2 },
|
||||||
{ name: 'Option 3', value: 3 }
|
{ name: 'Option 3', value: 3 }
|
||||||
]);
|
]);
|
||||||
<\/script>
|
<\/script>
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,11 +74,11 @@ import { ref } from 'vue';
|
||||||
|
|
||||||
const value = ref(null);
|
const value = ref(null);
|
||||||
const options = ref([
|
const options = ref([
|
||||||
{ icon: 'pi pi-align-left', value: 'Left' },
|
{ icon: 'pi pi-align-left', value: 'Left' },
|
||||||
{ icon: 'pi pi-align-right', value: 'Right' },
|
{ icon: 'pi pi-align-right', value: 'Right' },
|
||||||
{ icon: 'pi pi-align-center', value: 'Center' },
|
{ icon: 'pi pi-align-center', value: 'Center' },
|
||||||
{ icon: 'pi pi-align-justify', value: 'Justify' }
|
{ icon: 'pi pi-align-justify', value: 'Justify' }
|
||||||
]);
|
]);
|
||||||
<\/script>
|
<\/script>
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue