fix: broken component import in prod

This commit is contained in:
liyasthomas
2021-08-24 09:14:46 +05:30
parent f20fed444a
commit 12c28f4efc
75 changed files with 254 additions and 153 deletions

View File

@@ -64,7 +64,9 @@
</template>
<script>
export default {
import { defineComponent } from "@nuxtjs/composition-api"
export default defineComponent({
props: {
gqlField: { type: Object, default: () => {} },
jumpTypeCallback: { type: Function, default: () => {} },
@@ -79,7 +81,7 @@ export default {
return this.gqlField.args || []
},
},
}
})
</script>
<style scoped lang="scss">

View File

@@ -11,10 +11,11 @@ import "ace-builds/src-noconflict/ext-language_tools"
import "ace-builds/src-noconflict/mode-graphqlschema"
import * as gql from "graphql"
import { getAutocompleteSuggestions } from "graphql-language-service-interface"
import { defineComponent } from "@nuxtjs/composition-api"
import { defineGQLLanguageMode } from "~/helpers/syntax/gqlQueryLangMode"
import debounce from "~/helpers/utils/debounce"
export default {
export default defineComponent({
props: {
value: {
type: String,
@@ -237,7 +238,7 @@ export default {
}
}, 2000),
},
}
})
</script>
<style scoped lang="scss">

View File

@@ -56,13 +56,14 @@
</template>
<script>
import { defineComponent } from "@nuxtjs/composition-api"
import {
GraphQLEnumType,
GraphQLInputObjectType,
GraphQLInterfaceType,
} from "graphql"
export default {
export default defineComponent({
props: {
// eslint-disable-next-line vue/require-default-prop, vue/require-prop-types
gqlType: {},
@@ -96,7 +97,7 @@ export default {
return !!this.highlightedFields.find(({ name }) => name === field.name)
},
},
}
})
</script>
<style scoped lang="scss">

View File

@@ -8,9 +8,10 @@
</template>
<script>
import { defineComponent } from "@nuxtjs/composition-api"
import { GraphQLScalarType } from "graphql"
export default {
export default defineComponent({
props: {
// eslint-disable-next-line vue/require-default-prop
gqlType: null,
@@ -39,5 +40,5 @@ export default {
return t
},
},
}
})
</script>