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:
Alex Grozav
2023-04-21 18:51:08 +03:00
committed by GitHub
parent 8a38624cbc
commit 9c94050deb
90 changed files with 265 additions and 235 deletions

View File

@@ -18,7 +18,7 @@ import { IVersionNode } from '@/Interface';
import { useRootStore } from '@/stores/n8nRootStore';
import { INodeTypeDescription } from 'n8n-workflow';
import { mapStores } from 'pinia';
import Vue from 'vue';
import { defineComponent } from 'vue';
interface NodeIconSource {
path?: string;
@@ -26,7 +26,7 @@ interface NodeIconSource {
icon?: string;
}
export default Vue.extend({
export default defineComponent({
name: 'NodeIcon',
props: {
nodeType: {},