Godofbrowser/vuejs-dialog

html message content not encoding

adam-jones-net opened this issue · 2 comments

I'm trying to send html code to the dialog but it doesn't seem to work.

let options = {
	html: true,
	loader: false, 
	reverse: true,
	okText: 'Submit',
	cancelText: 'Cancel',
	animation: 'zoom',
	backdropClose: true 
};
this.$dialog.confirm('a <b>test</b>').then(function () {
	console.log('Clicked on proceed')
})

The result I get in the dialog is:

a <b>test</b>

Ignore me, my mistake the options weren't being parsed!