new Vue({ template:'<i>{{text}}</i>', data(){ return { text:'asdf' } } }).$mount('#app')
<html> <body> <div id='app'> {{text}} </div> </body> </html>