diff --git a/packages/_vue3-migration-test/src/components/index.ts b/packages/_vue3-migration-test/src/components/index.ts
index 99cd55d322..9f6ddff7f0 100644
--- a/packages/_vue3-migration-test/src/components/index.ts
+++ b/packages/_vue3-migration-test/src/components/index.ts
@@ -7,3 +7,4 @@ export { default as TestBaseEventButton } from './test-base-event-button.vue';
export { default as TestBaseVariableColumnGrid } from './test-base-variable-column-grid.vue';
export { default as TestSlidingPanel } from './test-sliding-panel.vue';
export { default as TestUseLayouts } from './test-use-layouts.vue';
+export { default as TestBaseSuggestions } from './suggestions/test-base-suggestions.vue';
diff --git a/packages/_vue3-migration-test/src/components/suggestions/test-base-suggestions.vue b/packages/_vue3-migration-test/src/components/suggestions/test-base-suggestions.vue
new file mode 100644
index 0000000000..141fe1faa8
--- /dev/null
+++ b/packages/_vue3-migration-test/src/components/suggestions/test-base-suggestions.vue
@@ -0,0 +1,16 @@
+
+
+
+ {{ suggestion.query }}
+
+
+
+
+
+
+
diff --git a/packages/_vue3-migration-test/src/router.ts b/packages/_vue3-migration-test/src/router.ts
index eb7dbcbd9a..7367fc2fbb 100644
--- a/packages/_vue3-migration-test/src/router.ts
+++ b/packages/_vue3-migration-test/src/router.ts
@@ -21,7 +21,8 @@ import {
TestBaseVariableColumnGrid,
TestEmpathize,
TestUseLayouts,
- TestSlidingPanel
+ TestSlidingPanel,
+ TestBaseSuggestions
} from './';
const routes = [
@@ -134,6 +135,11 @@ const routes = [
path: '/test-use-layouts',
name: 'TestUseLayouts',
component: TestUseLayouts
+ },
+ {
+ path: '/base-suggestions',
+ name: 'BaseSuggestions',
+ component: TestBaseSuggestions
}
];
diff --git a/packages/x-components/src/components/suggestions/base-suggestions.vue b/packages/x-components/src/components/suggestions/base-suggestions.vue
index fb819377e0..f7138f3f67 100644
--- a/packages/x-components/src/components/suggestions/base-suggestions.vue
+++ b/packages/x-components/src/components/suggestions/base-suggestions.vue
@@ -19,11 +19,10 @@