File: app/components/license/license.js

Recommend this page to a friend!
  Classes of Sergey Beskorovayniy   Hackernews Vue   app/components/license/license.js   Download  
File: app/components/license/license.js
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Hackernews Vue
View information from Hackernews using Vue.js
Author: By
Last change:
Date: 8 years ago
Size: 378 bytes
 

Contents

Class file image Download
define([ 'vue', 'marked', 'text!LICENSE.md', ], function (Vue, marked, license) { // Create component class var License = Vue.extend({ name: 'license', template: '<div class="markdown-body">' + marked(license) + '</div>', }) // Create and registration component Vue.component('license', License); return License; });