VUEインスタンスからAJAX経由でデータを取得し、そのデータをコンポーネントに渡す必要があります。Vueインスタンスからネストされたコンポーネントにデータを渡すには
[Vue warn]: Property or method "sectors" is not defined on the instance but referenced during render. Make sure to declare reactive data properties in the data option.
:私は次のエラーを取得する
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<title>mysite</title>
</head>
<body>
<div id="app">
<parent-component></parent-component>
</div>
<template id="parent-component-template">
<div id="the-template">
<div class="the-list">
<span is="sector-item" v-for="item in sectors" :sector="item"></span>
</div>
<button>Button</button>
</div>
</template>
<template id="sector-item-template">
<span>
{{ sector.name }}
</span>
</template>
<!-- Vue.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.4.2/vue.js"></script>
<script>
Vue.component('parent-component', {
template: '#parent-component-template'
});
Vue.component('sector-item', {
props: ['sector'],
template: '#sector-item-template'
});
let app = new Vue({
el: '#app',
data: {
sectors: [{
'id': 1,
'name': 'Industry'
}]
}
});
</script>
</body>
</html>
:
ここがaproximately私のコードです...私は今Vue.jsがどのように機能するかを学んでいますが、私は少し断片的なドキュメントを見つけます
どこでミスをしますか?
親コンポーネントに小道具として 'sectors'を渡す必要があります – thanksd
https://vuejs.org/v2/guide/components.html#Props –