前提・実現したいこと
Nuxtのcomputedでtrue, falseを返したいと考えています。
発生している問題・エラーメッセージ
下記のコードでtrue, falseを返すようにしているのですが[object Promise]
と返ってきてしまします。
computed: { sample: function() { return this.$OneSignal.isPushNotificationsEnabled(async (isEnabled) => { if (isEnabled) { console.log('Push notifications are enabled!') return false } else { console.log('Push notifications are not enabled yet.') return true } }) } },
こちら、trueかfalseを返すためにはどの予にしたら良いでしょうか?
アドバイスいただけると幸いです。
回答1件
あなたの回答
tips
プレビュー