Skip to content

Commit

Permalink
feat(input): added inputcomponent
Browse files Browse the repository at this point in the history
  • Loading branch information
crsten committed Aug 18, 2018
1 parent 3d6cbeb commit 5a1daa1
Show file tree
Hide file tree
Showing 9 changed files with 1,415 additions and 13 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ notifications:
email: false
node_js:
- '10'
- '9'
- '8'
- '6'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
Expand Down
2 changes: 1 addition & 1 deletion docs/.vuepress/components/button-component.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script>
import { ButtonComponent } from 'node_modules/vue-elder-button'
import { ButtonComponent } from 'vue-elder-button'
export default ButtonComponent
</script>
4 changes: 4 additions & 0 deletions docs/.vuepress/components/input-component.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<script>
import { InputComponent } from 'vue-elder-input'
export default InputComponent
</script>
2 changes: 1 addition & 1 deletion docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = {
{
title: 'Components',
collapsable: false,
children: ['/components/button'],
children: ['/components/button', '/components/input'],
},
],
lastUpdated: 'Last Updated',
Expand Down
6 changes: 6 additions & 0 deletions docs/.vuepress/enhanceApp.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default ({
Vue, // the version of Vue being used in the VuePress app
options, // the options for the root Vue instance
router, // the router instance for the app
siteData, // site metadata
}) => {}
Loading

0 comments on commit 5a1daa1

Please sign in to comment.