diff --git a/src/views/setup/Setup.vue b/src/views/setup/Setup.vue index 48e60c3d3..bf3a7983b 100755 --- a/src/views/setup/Setup.vue +++ b/src/views/setup/Setup.vue @@ -98,7 +98,7 @@ import Dialog from 'primevue/dialog/sfc'; }, components: { 'p-inputtext': primevue.inputtext - } + } }; createApp(App).mount("#app"); @@ -218,7 +218,7 @@ app.use(PrimeVue, {ripple: true});
Input fields come in two styles, default is outlined with borders around the field whereas filled alternative adds a background color - to the field. Applying p-input-filled to an ancestor of an input enables the filled style. If you prefer to use filled inputs in the entire application, + to the field. Applying p-input-filled to an ancestor of an input enables the filled style. If you prefer to use filled inputs in the entire application, use a global container such as the document body or the application element to apply the style class. Note that in case you add it to the application element, components that are teleported to the document body such as Dialog will not be able to display filled inputs as they are not a descendant of the application root element in the DOM tree, to resolve this case set inputStyle to 'filled' at PrimeVue configuration as well.
@@ -269,7 +269,7 @@ app.use(PrimeVue, {