This project uses the unplugin-auto-import
plug-in.
- Create a new folder under views, Like "aaa"
- Create
index.vue
under "aaa" - Enter the following code &
npm run dev
<template>
<div></div>
</template>
<script lang="ts" setup>
let a = ref(1);
</script>
<style scoped lang="less"></style>
The following error will occur
找不到名称“ref”。ts(2304)