Challenge programming

Vue.js

P41 「データーをWEBブラウザに出力しよう」| Let's output data to a web browser

vueインスタンス側で用意した文字列のデーターをHTMLに反映し、ブラウザに表示させる。

ここに表示→{{ text }}

あなたもバインドさせてみよう!(文字を変えてみよう)| Let's bind you too! (Let's change the letters)
「F12」→「console」→「app.text = '好きな文字'」を入力 → ENTER

HTML <div id="app">
ここに表示→{{ text }}
</div>
javascript const app = new Vue({
el: '#app',
data(){
return{
text: 'hello!! vue.js'
}
}
});

この本を参考に学び、完成させることができました。しかし、プログラミング初心者の私が詳しく解説することは、おこがましく、難しく出来ません(ToT) その点、この本では丁寧な解説が載っていますので、解説とともにコードを書き、完成させればより深く学ぶことができます(^.^) 身に付けて消えないスキルがこの値段。買っておいてよかったです。

やっぱり自分はプロの人から直接学びたいという方はこちら。| Click here if you want to learn directly from professionals

キャリアアップに必要なスキルを取得しよう。| Get the skills you need to advance your career.

オンラインで受講ができるスクールですので、全国どこからでも。 | Since it is a school where you can take classes online, you can take it from anywhere in the country.

ぺージの先頭に戻る(Return to top of page)


©2020年9月 Challenge programming

プライバシーポリシー