File: app/components/app/footer/footer.js

Recommend this page to a friend!
  Classes of Sergey Beskorovayniy   Vuex Examples   app/components/app/footer/footer.js   Download  
File: app/components/app/footer/footer.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/footer/footer.js
Date: 2 years ago
Size: 437 bytes
 

Contents

Class file image Download
define([ 'text!app/components/app/footer/footer.html', ], function (template) { // Create component Footer class var Footer = { name: 'app-footer', template: template, data: function () { return { developer_copyright: '© 2016 by Sergei Beskorovainyi. All rights reserved', email: ' bsa2657@yandex.ru' } } }; return Footer; });