- Finished more stuff and updated readme
This commit is contained in:
@@ -2,8 +2,9 @@
|
|||||||
A dictionnary of arcane spells from a homebrew tabletop RPG.
|
A dictionnary of arcane spells from a homebrew tabletop RPG.
|
||||||
|
|
||||||
## Built With
|
## Built With
|
||||||
* [Vue CLI](http://www.dropwizard.io/1.0.2/docs/) - Web Framework
|
* [Vue CLI](http://www.dropwizard.io/1.0.2/docs/) - Web Framework for the client
|
||||||
* [NPM](https://maven.apache.org/) - Package and Dependency Management
|
* [NPM](https://maven.apache.org/) - Package and Dependency Management
|
||||||
|
|
||||||
## Authors
|
## Authors
|
||||||
* **Alexis** - *Designing, Development & Conception* - [Github](https://github.com/AlexisNP)
|
* **Alexis Pelé** - *Designing, Development & Conception* - [Github](https://github.com/AlexisNP)
|
||||||
|
* **Mathieu Hance** - *Designing, Integration*
|
||||||
@@ -58,10 +58,9 @@ export default {
|
|||||||
this.adding_spell = false
|
this.adding_spell = false
|
||||||
},
|
},
|
||||||
addSpell(e) {
|
addSpell(e) {
|
||||||
console.log(e)
|
|
||||||
Spells.getSpell(e.id)
|
Spells.getSpell(e.id)
|
||||||
.then(v => {
|
.then(v => {
|
||||||
this.spells.push(v.data)
|
this.spells.unshift(v.data)
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.adding_spell = false
|
this.adding_spell = false
|
||||||
|
|||||||
@@ -27,8 +27,6 @@ Vue.use(VueRouter)
|
|||||||
Vue.use(VueMasonryPlugin)
|
Vue.use(VueMasonryPlugin)
|
||||||
Vue.use(BootstrapVue)
|
Vue.use(BootstrapVue)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
var filter = function(text, length, clamp){
|
var filter = function(text, length, clamp){
|
||||||
clamp = clamp || '...';
|
clamp = clamp || '...';
|
||||||
var node = document.createElement('div');
|
var node = document.createElement('div');
|
||||||
|
|||||||
Reference in New Issue
Block a user