<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app">
</div>
<script src="./node_modules/vue/dist/vue.js"></script>
<script>
var App = {
data() {
return {
}
},
template: `
<div>
<input type="text" ref="input">
</div>
`,
mounted() {
console.log(this.$refs.input); // <input type="text">
this.$refs.input.focus();
}
}
new Vue({
el: '#app',
data() {
return {
}
},
template: `<App />`,
components: {
App
}
});
</script>
</body>
</html>