November 2017
Beginner to intermediate
398 pages
8h 42m
English
Let's try to display our note in a new pane using a text interpolation:
<!-- Preview pane -->
<aside class="preview">
{{ notePreview }}
</aside>
We should now have the preview pane displaying our note on the right side of the app. If you type some text in the note editor, you should see the preview updating automatically. However, there is an issue with our app, which arises when you use markdown formatting.
I'm in **bold**!
Our computed property should return this in valid HTML, and we should have some bold text rendered in our preview pane. ...
Read now
Unlock full access