ERROR in ./src/components/MyFooter.vue Module Error (from ./node_modules/vue-loader/dist/index.js): At least one <template> or <script> is required in a single file component.
时间: 2023-12-24 17:04:44 浏览: 122
vue消息弹出框组件需要的文件
这个错误提示是因为你的Vue组件文件中没有 `<template>` 或 `<script>` 标签。每个Vue单文件组件必须至少包含一个 `<template>` 或 `<script>` 标签,否则Vue编译器无法识别该文件。
你需要在你的 `MyFooter.vue` 文件中添加一个 `<template>` 或 `<script>` 标签,例如:
```
<template>
<!-- your template code here -->
</template>
<script>
export default {
// your component options here
}
</script>
```
确保在 `<template>` 和 `<script>` 标签之间添加了有效的Vue模板代码和组件选项。
阅读全文