错误使用vue中的导出默认值

i34xakig  于 2023-05-01  发布在  Vue.js
关注(0)|答案(1)|浏览(151)

CodeError
我试图运行上面的代码,但我不能,在浏览器中我看不到任何东西。有没有其他方法在<scripts setup> </script>中编写代码?我了解到,函数进入export default { name: 'App', //code },因为当我键入其他任何东西,如console.log('It runs'),我得到一个错误,我甚至不能看到'hello world'?请帮帮我-;

dgtucam1

dgtucam11#

您代码错误

// 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>

相关问题