Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.64 KB

File metadata and controls

45 lines (32 loc) · 1.64 KB

Tailor teaching elements

circleci build status bundlephobia minified size npm package version github license js @extensionengine style js @extensionengine style open source love

Vue.js library for Tailor's teaching elements presentation

Usage

Install via npm

npm i tailor-teaching-elements

Register component

As global component

import Vue from 'vue';
import tailorTeachingElements from 'tailor-teaching-elements';

Vue.component('tailor-teaching-elements', tailorTeachingElements);
OR

Import locally in components

<script>
import tailorTeachingElements from 'tailor-teaching-elements';

export default {
  // ...
  components: {
    tailorTeachingElements
  }
};
</script>