Return [[PromiseResult]] in vue js

Solution:

You can get that result by adding then method to the Promise. For example:

new Promise((resolve, reject) => resolve('success')).then(res => console.log(res))

This code will log your [[PromiseResult]] object.