add checkbox m

This commit is contained in:
2020-04-11 23:10:52 +02:00
parent 37c4c2c090
commit c2e99da523
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',