search: Mark App.vue as being compatible with Vue 3

This doesn't change any behavior, it just suppresses a compatibility
warning and ensures that future changes to this file won't introduce
code that relies on Vue 2 compatibility features.

Change-Id: Id15af7d5d5035f59dc8f402f00d8f7f0d73a77f7
This commit is contained in:
Roan Kattouw 2022-07-19 16:23:06 -07:00
parent d709bb5606
commit 21b9dda2a2
1 changed files with 6 additions and 0 deletions

View File

@ -51,6 +51,12 @@ const { CdxTypeaheadSearch } = require( '@wikimedia/codex-search' ),
// @vue/component
module.exports = exports = defineComponent( {
name: 'App',
compatConfig: {
MODE: 3
},
compilerOptions: {
whitespace: 'condense'
},
components: { CdxTypeaheadSearch },
props: {
id: {