1Vue.component('mycomponent', {
2 template: "#mycomponent",
3});
4
5new Vue({
6 el: '#app',
7 mounted() {
8 console.log(
9 'Second level <input>\'s value:',
10 this.$refs.myFirstLevelRefName.$refs.mySecondLevelRefName.value
11 )
12 }
13})