84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
コードエラー
上記のコードを実行してみましたが、機能せず、ブラウザには何も表示されませんでした。 <scripts setup> </script> にコードを記述する他の方法はありますか?私が学んだのは、関数が次の場所にあるということです export デフォルト { name: 'App', //code }中 console.log('It run') など、他のものを入力すると、エラーが発生し、「hello world」さえ表示されないからですか?助けてください ;-;###
<scripts setup> </script>
export デフォルト { name: 'App', //code }
console.log('It run')
your code error
// App.vue <script setup lang="ts"> import { onMounted, reactive, toRefs } from 'vue' const state = reactive({ showNavbar: 'xxxx' }) const { showNavbar } = toRefs(state) onMounted(async() => { console.log('hello world') }) </script> <template> <main> <RouterView /> </main> </template> <style lang="scss" scoped> </style>
your code error