Skip to content

Commit 6604bd5

Browse files
committed
fix: rename scaling-functions.js to avoid component naming conflict
Nuxt auto-imports were resolving both scaling-functions.vue and scaling-functions.js to the same component name. Renamed the JS helper file to scaling-utils.js to prevent the conflict.
1 parent d3e052a commit 6604bd5

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

_examples/slider/scaling-functions.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup>
22
import { ref } from 'vue'
3-
import { customQuad, customSine } from './scaling-functions.js'
3+
import { customQuad, customSine } from './scaling-utils.js'
44
55
const scalingValue = ref([25, 75])
66
const scalingMarks = [

0 commit comments

Comments
 (0)