Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <v-textarea
- counter
- label="Текст ответа"
- :rules="rules"
- :value="value"
- v-model="msg"
- required
- ></v-textarea>
- <div class="wrapper" v-html="compiledMarkdown"></div>
- var marked = require('marked');
- computed: {
- compiledMarkdown: function () {
- return marked(this.msg, { sanitize: true })
- }
- },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement