<input type="text" v-model="phone" ref="input">
使用ref选中
在生命周期mounted中
mounted(){
    this.$nextTick(() => {
        this.$refs.input.focus()
    })
}