1

[[Promise=]]

How to return [[PromiseResult]] guys, please help thankss i use vue js and laravel

1 Answers1

1

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.