La lista de números no se ejecuta con Vue.js

pero así es como lo envié. ¿Hay una solución para esto?
El código que escribí para la salida de Vue.js es el siguiente
p(v-html="selectedProduct.description")Asegúrese de que cualquiera de sus propiedades list-style-type estilo predeterminado ol o ul se sobrescriba. Si se sobrescribe, puede anular el estilo debajo de su componente.
<style scoped> ol { list-style-type: decimal; } </style> Paso 1: plantilla HTML
<div id="app"> <div v-html="decription"></div> </div> Paso 2: data serán
data() { return { decription: `<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> <ol> <li>deneme</li> <li>denem2</li> <li>denem3</li> </ol>`, }; } Compruebe la output :