https://github.com/extensionengine/tailor-teaching-elements
Tailor teaching elements
https://github.com/extensionengine/tailor-teaching-elements
Last synced: 3 months ago
JSON representation
Tailor teaching elements
- Host: GitHub
- URL: https://github.com/extensionengine/tailor-teaching-elements
- Owner: ExtensionEngine
- License: mit
- Created: 2018-06-28T11:52:35.000Z (almost 7 years ago)
- Default Branch: develop
- Last Pushed: 2023-12-19T17:42:53.000Z (over 1 year ago)
- Last Synced: 2023-12-20T12:28:41.866Z (over 1 year ago)
- Language: Vue
- Size: 6.4 MB
- Stars: 9
- Watchers: 22
- Forks: 3
- Open Issues: 42
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tailor teaching elements
[](https://circleci.com/gh/extensionengine/tailor-teaching-elements)
[](https://bundlephobia.com/result?p=tailor-teaching-elements)
[](https://npm.im/tailor-teaching-elements)
[](https://github.com/extensionengine/tailor-teaching-elements/blob/develop/LICENSE)
[](https://github.com/extensionengine/eslint-config)
[](https://github.com/ExtensionEngine/stylelint-config)
[](https://github.com/ellerbrock/open-source-badge/)Vue.js library for [Tailor](https://github.com/ExtensionEngine/tailor)'s teaching elements presentation
## Usage
### Install via npm
`npm i tailor-teaching-elements`
### Register component
#### As global component
```js
import Vue from 'vue';
import tailorTeachingElements from 'tailor-teaching-elements';Vue.component('tailor-teaching-elements', tailorTeachingElements);
```##### OR
#### Import locally in components
```html
import tailorTeachingElements from 'tailor-teaching-elements';
export default {
// ...
components: {
tailorTeachingElements
}
};```