自定义标签存在,但是没有渲染
报错:
原因:
改正前:
<script>
import {milldeLayoutInMain} from "../../components/home/main/milldeLayoutInMain"
export default {
name: 'MainPage',
components:{
milldeLayoutInMain
}
}
script>
改正后
<script>
import milldeLayoutInMain from "../../components/home/main/milldeLayoutInMain"
export default {
name: 'MainPage',
components:{
milldeLayoutInMain
}
}
script>
效果:
**
**
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)