Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
eunjae-lee committed Sep 8, 2023
1 parent 74ce20d commit 3cfc73a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/field-plugin/helpers/vue3/src/FieldPluginProvider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,13 @@ provide('field-plugin', plugin)
</script>

<template>
<slot name="loading" v-if="plugin.type === 'loading'"></slot>
<slot name="error" v-if="plugin.type === 'error'"></slot>
<slot
name="loading"
v-if="plugin.type === 'loading'"
></slot>
<slot
name="error"
v-if="plugin.type === 'error'"
></slot>
<slot v-if="plugin.type === 'loaded'"></slot>
</template>

0 comments on commit 3cfc73a

Please sign in to comment.