Skip to content

Commit

Permalink
fn is not a function エラーを修正 (#1509)
Browse files Browse the repository at this point in the history
Co-authored-by: Yuto Ashida <y-chan@y-chan.dev>
  • Loading branch information
thiramisu and y-chan authored Aug 20, 2023
1 parent 437ed50 commit 42005f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/AudioParameter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ const precisionComputed = computed(() => {
});
// クリックでアクセント句が選択されないように@click.stopに渡す
const stopPropagation = undefined;
const stopPropagation = () => {
// fn is not a function エラーを回避するために何もしない関数を渡す
};
</script>

<style scoped lang="scss">
Expand Down

0 comments on commit 42005f1

Please sign in to comment.