Vue JS



Vue Basic Setup code for single page: 



<body>
    <!-- components class -->
    <div id="root">
        <input type="textid="inputv-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>




  1. Vue instance
  2. Vue Directives
    1. binding directive





  1. V-bind: or  : 





2 way Binding [v-model]



Events: click,hover e.t.c


v-on: or @





মন্তব্যসমূহ

এই ব্লগটি থেকে জনপ্রিয় পোস্টগুলি

SEO [Search Engine Optimization ] (সার্চ ইঞ্জিন অপ্টিমাইজেশান)

Web Scraping With PHP