搜尋

首頁  >  問答  >  主體

Vue中使用export default時遇到問題

程式碼錯誤

我嘗試運行上述程式碼,但是無法運行,在瀏覽器中也看不到任何內容。 有沒有其他方法來寫<scripts setup> </script>中的程式碼?我學到的是函數放在 export default { name: 'App', //code }中 因為當我輸入其他任何內容時,例如console.log('It runs'),我會得到一個錯誤,甚至看不到'hello world'?請幫忙 ;-;

P粉769413355P粉769413355498 天前623

全部回覆(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
  • 取消回覆