proxyserver2023 / vue-mastery

intro to vue js course

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vue Cheatsheet

Only the snippets

Essentials

  • import vue.js
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
  • Output a Value {{message}}
  • Conditional Output v-if=seen
  • Loop v-for="todo in todos"
  • On Click v-on:click="reverseMessage"
  • Component
Vue.component('component-name', {
    template: '<li>This is a todo</li>'
});
<ol>
  <!-- Create an instance of the todo-item component -->
  <todo-item></todo-item>
</ol>
  • Passing Data into Component
Vue.component('todo-item', {
    template: '<li>{{todo.text}}</li>',
    props: ['todo']
});
  • Passing Data into Component With Iteration
<todo-item
    v-for="item in collection"
    v-bind:todo="item"
    v-bind:key="item.id"
>
</todo-item>

Reusability and Composition

Mixins

  • create Mixins
// define a mixin object
var myMixin = {
  created: function () {
    this.hello()
  },
  methods: {
    hello: function () {
      console.log('hello from mixin!')
    }
  }
}

// define a component that uses this mixin
var Component = Vue.extend({
  mixins: [myMixin]
})


var component = new Component() // => "hello from mixin!"

About

intro to vue js course


Languages

Language:JavaScript 81.3%Language:CSS 12.6%Language:HTML 6.1%