Merge branch 'master' into 'production'

add checkbox m

See merge request Romulus21/portal!24
This commit is contained in:
Romain Delanoë
2020-04-11 21:11:46 +00:00
3 changed files with 5 additions and 2 deletions

View File

@@ -30,6 +30,7 @@
},
"dependencies": {
"laravel-mix-svg-vue": "^0.2.6",
"markdown-it": "^10.0.0"
"markdown-it": "^10.0.0",
"markdown-it-checkbox": "^1.1.0"
}
}

View File

@@ -147,6 +147,7 @@
this.wrongLetters.splice(0);
this.letterBox = ''
this.selectedWord = ''
this.wrongLettersEl = ''
},
showNotification(){
this.notification = true

View File

@@ -28,7 +28,8 @@
<script>
// import TagBox from "../Tag/TagBox";
let MarkdownIt = require('markdown-it'),
md = new MarkdownIt();
md = new MarkdownIt()
.use(require('markdown-it-checkbox'));
export default {
name: 'MemoShow',