<div id="vue-root">
<h2>
<a href="{{ url }}">Google</a>
</h2>
</div>
import Vue from 'vue';
new Vue({
el: '#vue-root',
data: {
url: 'http://google.com'
}
})
vue.runtime.esm.js:601 [Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.