By default, Vue outputs the HTML as raw text. In order to output/render real HTML, you will need to use the v-html directive.
<div v-html="restaurant.description"></div>
P.S. Do not skip chapters when learning something(Vue)!
Template syntaxes are explained at the begging of the Vue documentation, in Template Syntax.