mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +00:00
refactor(editor): Drop vue-typed-mixins (no-changelog) (#6257)
This commit is contained in:
committed by
GitHub
parent
79d0a0f247
commit
ebb3aaf61e
@@ -3,6 +3,8 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
import { mapStores } from 'pinia';
|
||||
import { externalHooks } from '@/mixins/externalHooks';
|
||||
import {
|
||||
BUILTIN_NODES_DOCS_URL,
|
||||
@@ -13,13 +15,12 @@ import type { INodeUi, ITab } from '@/Interface';
|
||||
import { useNDVStore } from '@/stores/ndv.store';
|
||||
import { useWorkflowsStore } from '@/stores/workflows.store';
|
||||
import type { INodeTypeDescription } from 'n8n-workflow';
|
||||
import { mapStores } from 'pinia';
|
||||
|
||||
import mixins from 'vue-typed-mixins';
|
||||
import { isCommunityPackageName } from '@/utils';
|
||||
|
||||
export default mixins(externalHooks).extend({
|
||||
export default defineComponent({
|
||||
name: 'NodeSettingsTabs',
|
||||
mixins: [externalHooks],
|
||||
props: {
|
||||
value: {
|
||||
type: String,
|
||||
|
||||
Reference in New Issue
Block a user