Change the url to ?value={your value} - this should appear in the input below, but it doesn't.

I could get a value from asyncData


Source script

export default {
  asyncData ({ query } = {}) {
    return { value: query.value, fromAsync: true };
  },
};