Vue - Snippets

Aus Wikizone
Wechseln zu: Navigation, Suche

Basics

// create App
const app = Vue.createApp();
// mount a html region
// app.mount('cssSelector');
app.mount('#myId');

// DATA OBJECT
const app = Vue.createApp({
    data() { //or data: function(){...}
        return{ // data always returns an object
            myVar: 'Learn Vue'// can store keys with vals of every type(bool, object, string...)
        }; 
    }
});
<div id="myId">
<h1>Hello World</h1>
<p>{{ myVar }}</p> <!-- outputs "Learn Vue" --<
</div>