Tailor teaching elements


Keywords
content-authoring, learning, tailor, teaching-elements, vue
License
MIT
Install
npm install tailor-teaching-elements@1.4.0

Documentation

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>