You should use Vue.set to make your data reactive.
Vue.set is a tool that allows us to add a new property to an already reactive object. Read more about Vue.set here.
So, you need to do very few fixes to your code.
Instead of-
this.info = response.data,
Do like-
Vue.set(this.info, 0, response.data);
// It takes three params-
// 1. The element inside which we want to update
// 2. The index where we want to put updated response.
// 3. Response
You can check out this example for reference-
CodeSandBox example
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…