1
ページが読み込まれたときにランダムなイメージを取得しようとしています。 なぜこれが動作していないのかわかりません...誰ですか?これは、バイブルとしてそれを実行しているが、私のvue-cliではなく、devサーバで動作します。Vue.jsランダムイメージimg v-bind
<template>
<section>
<img v-bind:src="selectedImage" />
</section>
</template>
<script>
export default {
data: {
images: [
'http://via.placeholder.com/350x150',
'http://via.placeholder.com/200x140',
'http://via.placeholder.com/200x100'
],
selectedImage: ''
},
created() {
const idx = Math.floor(Math.random() * this.images.length)
this.selectedImage = this.images[idx]
}
}
</script>
EDIT:コンポーネントで
import Vue from 'vue'
import App from './App'
import router from './router'
Vue.config.productionTip = false
new Vue({
el: '#app',
router,
template: '<App/>',
components: { App }
})
すべきですか? –
エラーメッセージは表示されませんが、イメージが表示されません。 –
私は試して、それは動作します。ここをクリックしてください:https://jsfiddle.net/sb0tyuf8/ –