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

@@ -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',