feat: Remove vue-fragment (no-changelog) (#6456)

* feat: remove vue-fragment (no-changelog)

* Update pnpm-lock.yaml

---------

Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
Alex Grozav
2023-06-16 14:25:12 +03:00
committed by GitHub
parent 6a7d1aedb1
commit 3e5f7adcbf
6 changed files with 8 additions and 24 deletions

View File

@@ -1,12 +1,10 @@
<template>
<fragment>
<el-tag v-if="type === 'danger'" type="danger" size="small" :class="$style['danger']">
{{ text }}
</el-tag>
<el-tag v-else-if="type === 'warning'" size="small" :class="$style['warning']">
{{ text }}
</el-tag>
</fragment>
<el-tag v-if="type === 'danger'" type="danger" size="small" :class="$style['danger']">
{{ text }}
</el-tag>
<el-tag v-else-if="type === 'warning'" size="small" :class="$style['warning']">
{{ text }}
</el-tag>
</template>
<script lang="ts">

View File

@@ -1,5 +1,5 @@
<template>
<fragment></fragment>
<span v-show="false" />
</template>
<script lang="ts">

View File

@@ -1,5 +1,5 @@
<template>
<fragment></fragment>
<span v-show="false" />
</template>
<script lang="ts">

View File

@@ -1,5 +1,4 @@
import type { PluginObject } from 'vue';
import Fragment from 'vue-fragment';
import VueAgile from 'vue-agile';
import 'regenerator-runtime/runtime';
@@ -16,7 +15,6 @@ export const GlobalComponentsPlugin: PluginObject<{}> = {
app.component('enterprise-edition', EnterpriseEdition);
app.use(Fragment.Plugin);
app.use(VueAgile);
app.use(ElementUI);
app.use(N8nPlugin);