File: app/components/app/header/logo.js

Recommend this page to a friend!
  Classes of Sergey Beskorovayniy   Vuex Examples   app/components/app/header/logo.js   Download  
File: app/components/app/header/logo.js
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Vuex Examples
Example apps using Vuex state management pattern
Author: By
Last change: Update of app/components/app/header/logo.js
Date: 2 years ago
Size: 466 bytes
 

Contents

Class file image Download
define([ 'text!app/components/app/header/logo.html', ], function (template) { // Create component Logo class var Logo = { name: 'app-logo', template: template, data: function () { return { logo_1: 'Vuex', logo_2: 'Examples', logo_description: 'Vuex is a state management pattern + library for Vue.js applications.', } } }; return Logo; });