diff --git a/apps/showcase/doc/inputtext/FloatLabelDoc.vue b/apps/showcase/doc/inputtext/FloatLabelDoc.vue
index 00b6e3e2f..8ea88ae27 100644
--- a/apps/showcase/doc/inputtext/FloatLabelDoc.vue
+++ b/apps/showcase/doc/inputtext/FloatLabelDoc.vue
@@ -9,7 +9,7 @@
-
+
In Label
@@ -36,7 +36,7 @@ export default {
-
+
In Label
@@ -54,7 +54,7 @@ export default {
-
+
In Label
@@ -86,7 +86,7 @@ export default {
-
+
In Label
diff --git a/apps/showcase/doc/select/FloatLabelDoc.vue b/apps/showcase/doc/select/FloatLabelDoc.vue
index 6b9953f66..77e3c8aaf 100644
--- a/apps/showcase/doc/select/FloatLabelDoc.vue
+++ b/apps/showcase/doc/select/FloatLabelDoc.vue
@@ -9,7 +9,7 @@
-
+
In Label
@@ -43,7 +43,7 @@ export default {
-
+
In Label
@@ -61,7 +61,7 @@ export default {
-
+
In Label
@@ -100,7 +100,7 @@ export default {
-
+
In Label
diff --git a/apps/showcase/doc/select/IftaLabelDoc.vue b/apps/showcase/doc/select/IftaLabelDoc.vue
index 0f8342d42..a703e7bdb 100644
--- a/apps/showcase/doc/select/IftaLabelDoc.vue
+++ b/apps/showcase/doc/select/IftaLabelDoc.vue
@@ -4,7 +4,7 @@
-
+
City
@@ -26,7 +26,7 @@ export default {
code: {
basic: `
-
+
City
`,
@@ -34,7 +34,7 @@ export default {
-
+
City
@@ -61,7 +61,7 @@ export default {
-
+
City
diff --git a/apps/showcase/doc/select/InvalidDoc.vue b/apps/showcase/doc/select/InvalidDoc.vue
index c6c63e66f..ad04dc8ea 100644
--- a/apps/showcase/doc/select/InvalidDoc.vue
+++ b/apps/showcase/doc/select/InvalidDoc.vue
@@ -2,8 +2,9 @@
Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.
-
-
+
+
+
@@ -12,7 +13,8 @@
export default {
data() {
return {
- selectedCity: null,
+ selectedCity1: null,
+ selectedCity2: null,
cities: [
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
@@ -22,12 +24,14 @@ export default {
],
code: {
basic: `
-
+
+
`,
options: `
-
-
+
+
+
@@ -35,7 +39,8 @@ export default {
export default {
data() {
return {
- selectedCity: null,
+ selectedCity1: null,
+ selectedCity2: null,
cities: [
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
@@ -50,15 +55,17 @@ export default {
`,
composition: `
-