mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat: Replace Vue.extend with defineComponent in editor-ui (no-changelog) (#6033)
* refactor: replace Vue.extend with defineComponent in editor-ui * fix: change $externalHooks extractions from mixins * fix: refactor externalHooks mixin
This commit is contained in:
@@ -58,7 +58,8 @@
|
||||
<script lang="ts">
|
||||
import { IUpdateInformation } from '@/Interface';
|
||||
import ParameterOptions from './ParameterOptions.vue';
|
||||
import Vue, { PropType } from 'vue';
|
||||
import { defineComponent } from 'vue';
|
||||
import type { PropType } from 'vue';
|
||||
import ParameterInputWrapper from './ParameterInputWrapper.vue';
|
||||
import { isValueExpression } from '@/utils';
|
||||
import { INodeParameterResourceLocator, INodeProperties, IParameterLabel } from 'n8n-workflow';
|
||||
@@ -67,7 +68,7 @@ import { useWorkflowsStore } from '@/stores/workflows';
|
||||
|
||||
type ParamRef = InstanceType<typeof ParameterInputWrapper>;
|
||||
|
||||
export default Vue.extend({
|
||||
export default defineComponent({
|
||||
name: 'parameter-input-expanded',
|
||||
components: {
|
||||
ParameterOptions,
|
||||
|
||||
Reference in New Issue
Block a user