vue声明周期

vue声明周期_第1张图片

1.在created中发送数据

async created(){
const res=await axios.get("url')

this.list=res.data.data

}

2.在mounted中获取焦点

mounted(){

        document.querySelector('#inp').focus()

你可能感兴趣的:(vue.js)