├── .editorconfig ├── .gitignore ├── README.md ├── assets ├── coffeebreak.svg └── entypo │ ├── entypo.css │ ├── fonts │ ├── entypo.eot │ ├── entypo.svg │ ├── entypo.ttf │ └── entypo.woff │ └── icons-reference.html ├── components └── App.vue ├── index.js ├── package.json ├── router └── index.js ├── store └── index.js └── views ├── Create.vue └── Get.vue /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | dist 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
This font was created withFontastic
16 |