You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
444 B
Plaintext

solution
.solution
!= "<yield/>"
style(scoped, type="scss").
.solution {
padding: 16px;
border: 1px solid #b40000;
border-radius: 4px;
background-color: #dec8c8;
h3 {
margin-top: 0px;
}
p {
margin-bottom: 0px;
}
}
pre {
padding-left: 16px;
}
script.
Object.assign(this, {
setData: (data) => {
if (this.opts.dataHandler != null) {
this.opts.dataHandler(data);
}
}
})