File: app/components/app/app.js

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

Contents

Class file image Download
define([ // Vue.js 'vue', // Components 'app/components/app/header/header', 'app/components/app/content_header/content_header', 'app/components/app/content_site/content_site', 'app/components/app/content_footer/content_footer', 'app/components/app/footer/footer' ], function (Vue, Header, ContentHeader, ContentSite, ContentFooter, Footer) { // Create component App class var App = Vue.extend({ components: { 'app-header': Header, 'app-content-header': ContentHeader, 'app-content-site': ContentSite, 'app-content-footer': ContentFooter, 'app-footer': Footer, } }) return App; });