Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bennyschudel committed Jan 21, 2019
0 parents commit 6226268
Show file tree
Hide file tree
Showing 25 changed files with 15,289 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.DS_Store
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# <VueColormind />

Vue component for a simple usage of the [colormind.io](http://colormind.io) service.

## Usage

```javascript
import VueColormind from '@hotpink/vue-colormind';

import '@hotpink/vue-colormind/dist/vue-colormind.css';

new Vue({
name: 'app',
data: () => ({
colors: ['hotpink', 'black', 'black', 'black', 'black']
}),
template: `<div class="app"> <VueColormind :value.sync="colors" /> </div>`
components: {
VueColormind,
}
}).$mount('#app');
```

## Author
Benny Schudel / Switzerland

## License

[MIT](http://opensource.org/licenses/MIT)


3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: ["@vue/app"]
};
Loading

0 comments on commit 6226268

Please sign in to comment.