nuxt icon indicating copy to clipboard operation
nuxt copied to clipboard

fix: pass the results of userChoice to the developers

Open QC-L opened this issue 9 months ago • 0 comments

There are times when we need to handle different logic based on the result of userChoice.

$pwa?.install().then((userChoice) => {
	if (userChoice.outcome === 'accepted') {
		console.log('accepted install');
	}
})

QC-L avatar May 20 '24 12:05 QC-L