运行我的vue项目时出现波纹管错误:
./node_modules/vue-loader/lib/template-compiler?{"id":"data-v-003cf1bf","hasScoped":true,"buble":{"transforms":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./node_modules/iview-loader??ref--0-1!./src/components/common/path-nav.vue
(Emitted value instead of an instance of Error)
Error compiling template:
<div class="path-nav">
<i-breadcrumb>
<i-breadcrumb-item v-for="route in route_list" to="{{route.route}}">{{ route.name }}</i-breadcrumb-item>
</i-breadcrumb>
</div>
我的密钥代码如下:
<template>
<div class="path-nav">
<i-breadcrumb>
<i-breadcrumb-item v-for="route in route_list" to="{{route.route}}">{{ route.name }}</i-breadcrumb-item>
</i-breadcrumb>
</div>
</template>
如果我发表评论:
<i-breadcrumb-item v-for="route in route_list" to="{{route.route}}">{{ route.name }}</i-breadcrumb-item>
我不会得到这个错误。
答案 0 :(得分:0)
to="{{route.route}}"
已在Vue.js2
你可以使用
:to="route.route"