前提・実現したいこと
laravelでVue.jsのクリックイベントを実施してその処理した値を画面に動的に表示をしたい。
発生している問題・エラーメッセージ
初期で設定している値(number)は表示されるのだが、
クリックイベントを実施しても値が変化しません。
いろいろサイトのソースを使用して試してみたのですが、動きません。
何が悪いのかが全然わからなかったので、ご質問致しました。。
設定しているテンプレートの画面が表示はされているので、ファイルを読み込んでいるとは思います。
そこから画面上で値を更新するイベントが実施されていません。
該当のソースコード
ソースコード
SampleComponent.vue
<template> <div> <p> Count : <span :class="numberClasses">{{ number }}</span> </p> <button @click="countDown">−1</button> <button @click="countUp">+1</button> </div> </template> <script> export default { name: "SampleComponent", data () { return { number: 0 } }, computed: { numberClasses: function () { return { 'positive': (this.number > 0), 'negative': (this.number < 0) } } }, methods: { countDown: function () { this.number-- }, countUp: function () { this.number++ } } } </script> <style scoped> p { margin: 10px; } .positive { color: blue; } .negative { color: red; } </style>
index.blade.php
@extends('layouts.app') <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="{{ csrf_token() }}"> <script src="https://unpkg.com/vue"></script> <title>Title</title> </head> @section('content') <body> <div class="container"> <div id="app"> <sample-component></sample-component> </div> </div> <script src="{{ mix('js/app.js')}}"></script> </body> @endsection
/** * First we will load all of this project's JavaScript dependencies which * includes Vue and other libraries. It is a great starting point when * building robust, powerful web applications using Vue and Laravel. */ require('./bootstrap'); window.Vue = require('vue'); /** * The following block of code may be used to automatically register your * Vue components. It will recursively scan this directory for the Vue * components and automatically register them with their "basename". * * Eg. ./components/ExampleComponent.vue -> <example-component></example-component> */ // const files = require.context('./', true, /.vue$/i) // files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default)) Vue.component('poke-component',require('./components/PokeComponent.vue').default); Vue.component('sample-component', require('./components/ExampleComponent.vue')); /** * Next, we will create a fresh Vue application instance and attach it to * the page. Then, you may begin adding components to this application * or customize the JavaScript scaffolding to fit your unique needs. */ const app = new Vue({ el: '#app', });
※vueに詳しくないのですが…
各メソッド「countDown」「countUp」は通っていることを確認されていますか?
また、「Vue.component('sample-component', require('./components/ExampleComponent.vue'));
」とありますが、「ExampleComponent.vue」の読み込みで大丈夫ですか?
ご返信ありがとうございます。
おそらく「countDown」「countUp」の処理は通っていないと思います。(コンソール処理で確認をしてみましたが、何も表示されておりませんでした。)
すみません。ExampleComponent.vueで大丈夫です。
上のサンプルコード名ではSampleComponent.vueとなっていますが、誤りです。。。。
コンソールにエラーは出たりしていないのですか?