gpt4 book ai didi

vue.js - 使用 VITE + Vue3 - [Vue 警告] : Component is missing template or render function

转载 作者:行者123 更新时间:2023-12-05 04:38:15 34 4
gpt4 key购买 nike

我正在尝试在我的 Vue3 + Vite 项目中使用 VueThreeSixty ( https://github.com/rajeevgade/vue-360) 组件。

我导入了所有内容,将 VueThreeSixty 添加到我的组件对象中,但看起来我仍然缺少一些东西,你能帮我弄清楚是什么吗?

[Vue warn]: Component is missing template or render function.  

这是我的代码。

    <template>
<Navigation></Navigation>
<div class="tb_header">

</div>
<div class="container">
<div class="row">
<div class="w-2/5">
<VueThreeSixty
:amount="36"
imagePath="https://scaleflex.cloudimg.io/width/600/q35/https://scaleflex.ultrafast.io/https://scaleflex.airstore.io/demo/chair-360-36"
fileName="chair_{index}.jpg?v1"
/>
</div>
<div class="w-3/5">Sound</div>
</div>
</div> <template>

<script>
import Navigation from "../components/Navigation.vue";
import Footer from "../components/Footer.vue";
import VueThreeSixty from 'vue-360'

import "vue-360/dist/css/style.css";

export default {
data() {},
components: {
Navigation,
Footer,
VueThreeSixty
},
};
</script>

主要.js

    import { createApp } from 'vue'
import Home from './views/Home.vue'
import Navigation from './components/Navigation.vue'
import Footer from './components/Footer.vue'
import App from './App.vue'
import VueThreeSixty from 'vue-360'

import 'vue-360/dist/css/style.css'

import './main.css'
import './typo.css'

createApp(App)
.use(VueThreeSixty)
.mount('#app')

最佳答案

您应该遵循 https://github.com/rajeevgade/vue-360 的文档.您需要先“Vue.use”组件并包含标签 vue-three-sixty。但是看起来这个组件还不支持 Vue 3。

关于vue.js - 使用 VITE + Vue3 - [Vue 警告] : Component is missing template or render function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70634999/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com