検索

ホームページ  >  に質問  >  本文

Vue でデフォルトのエクスポートを使用するときに発生する問題

コードエラー

上記のコードを実行してみましたが、機能せず、ブラウザには何も表示されませんでした。 <scripts setup> </script> にコードを記述する他の方法はありますか?私が学んだのは、関数が次の場所にあるということです export デフォルト { name: 'App', //code }console.log('It run') など、他のものを入力すると、エラーが発生し、「hello world」さえ表示されないからですか?助けてください ;-;###

P粉769413355P粉769413355449日前600

全員に返信(1)返信します

  • P粉276876663

    P粉2768766632023-09-13 09:38:30

    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>

    返事
    0
  • キャンセル返事