mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
refactor(editor): Drop vue-typed-mixins (no-changelog) (#6257)
This commit is contained in:
committed by
GitHub
parent
79d0a0f247
commit
ebb3aaf61e
@@ -5,11 +5,12 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import mixins from 'vue-typed-mixins';
|
||||
import { defineComponent } from 'vue';
|
||||
import emitter from '@/mixins/emitter';
|
||||
|
||||
export default mixins(emitter).extend({
|
||||
export default defineComponent({
|
||||
name: 'IntersectionObserved',
|
||||
mixins: [emitter],
|
||||
props: ['enabled'],
|
||||
mounted() {
|
||||
if (!this.enabled) {
|
||||
|
||||
Reference in New Issue
Block a user