File: src/packages/common/components/app-panel/components/app-panel-component.js

Recommend this page to a friend!
  Classes of Alien Fernandez   Seed Sails Angular   src/packages/common/components/app-panel/components/app-panel-component.js   Download  
File: src/packages/common/components/app-panel/components/app-panel-component.js
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Seed Sails Angular
Full stack framework based on Sails, Node, Angular
Author: By
Last change: Update of src/packages/common/components/app-panel/components/app-panel-component.js
Date: 2 years ago
Size: 508 bytes
 

Contents

Class file image Download
import commonModule from '../../../commonModule'; //Import template import AppPanelTpl from '../views/app-panel-view.tpl'; /** * @ngdoc component * @name appPanel * @author Alien Fernandez Fuentes <alienfernandez85@gmail.com> * @version 1.0.0 * * @description appPanel * */ commonModule.component('appPanel', { restrict: 'E', templateUrl: ($element, $attrs) => { return AppPanelTpl.name; }, controller: 'AppPanelController as appPanelCtrl' }); export default commonModule;