পোস্টগুলি

আগস্ট, ২০১৮ থেকে পোস্টগুলি দেখানো হচ্ছে

Vue JS

ছবি
Vue Basic Setup code for single page:  laracast vue 2 < body >      <!-- components class -->      < div   id =" root ">          < input   type =" text "  id =" input "  v-model =" message ">          < p > {{message}} </ p >      </ div >     < script   src =" https://unpkg.com/vue@2.6.11/dist/vue.js "></ script >     < script >          let  data  =   {              message :   " Hello " ,          };          new   Vue ( {              el :   " #root " ,              data :  data ,              methods :   {              },              computed :   {              },          } ) ;      </ script > </ body > Vue instance Vue Directives binding directive V-bind: or  :   2 way Binding [v-model] Events: click,hover e.t.c v-on: or