laravel8 + vue.js2.6の.nativeの使い方
この本を書いたきっかけは?何についての記事?
「これから始める、Vue.js実践入門」(山田祥寛/著、SBクリエイティブ株式会社/発行)のリスト4-15~16あたりをlaravel8のプロジェクト内でやりたかったので、コードを少し改変してみた。
参考にしたリンク
MyComponent3.vue
<template>
<div>
<mycomponent4 v-on:focus.native="onfocus"></mycomponent4>
</div>
</template>
<script>
import mycomponent4 from './MyComponent4.vue';
export default {
components: {mycomponent4},
data: function () {
return {
current: 0,
}
},
methods: {
onfocus: function (e) {
console.log(e);
}
},
};
</script>
MyComponent4.vue
<template>
<input type="text" />
</template>
<script>
export default {
data: function () {
return {
// current: 0,
}
},
// props: ['step'],
methods: {
}
};
</script>
app.js
require('./bootstrap');
import Vue from 'vue'
import App3 from './components/MyComponent3.vue'
const app3 = new Vue({
el: '#app3',
components: {
App3
},
});
Author And Source
この問題について(laravel8 + vue.js2.6の.nativeの使い方), 我々は、より多くの情報をここで見つけました https://qiita.com/tarako2/items/b5b59d4ae925b23c313d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .