A simple Vue.js component that simulates typing
$ npm run build
import VueTyping from 'dist/vue-typing';
Vue.component('vue-typing', VueTyping);
<vue-typing text="Hello World!"></vue-typing>
$ npm run build:umd
<vue-typing text="Hello World!"></vue-typing>
<script src="https://unpkg.com/vue" charset="utf-8"></script>
<script src="./dist/vue-typing.min.js" charset="utf-8"></script>
<script type="text/javascript">
Vue.component('vue-typing', window.VueTyping);
</script>
yarn add vue-typing
npm i --save vue-typing
npm run serve
This template uses karma with chai by default, you can change test settings in poi.config.js
npm run test
npm run test:watch
npm run test:cov
This project is licensed under MIT License