[Vuejs]-Following vue-stripe directions causes Webpack to give warning "export 'StripeCheckout' was not found in 'vue-stripe'"

0👍

This issue from the vue-stripe repo might be useful here:

You can work around this by doing something like

import Stripe from 'vue-stripe'

components: {'stripe-checkout': Stripe.StripeCheckout, 'bus': StripeCheckout.Bus}

Leave a comment