Skip to content

Commit

Permalink
hopefully fixes #1378 - Vue file with compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
yairEO committed Oct 28, 2024
1 parent ab72938 commit 9b2f3a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/tagify.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<template v-once>
<textarea v-if="mode === 'textarea'" v-model="value"/>
<textarea v-if="mode === 'textarea'" v-bind="value"/>
<input v-else :value="value" v-on:change="onChange">
</template>

<script>
import Tagify from "./tagify.min.js"
import Tagify from "./tagify.js"
import "./tagify.css"
export default {
Expand Down

0 comments on commit 9b2f3a9

Please sign in to comment.