diff --git a/examples/commonjs/App.vue b/examples/commonjs/App.vue index db64fa6..5e9d179 100644 --- a/examples/commonjs/App.vue +++ b/examples/commonjs/App.vue @@ -1,24 +1,53 @@ - - - - Pay me, My Money - - - + + + + Pay me, My Money + + + + PAY WITH CUSTOM BUTTON + + + + diff --git a/examples/commonjs/app.js b/examples/commonjs/app.js index ca668ea..c9f6154 100644 --- a/examples/commonjs/app.js +++ b/examples/commonjs/app.js @@ -1,5 +1,5 @@ import Vue from 'vue' import App from './App.vue' new Vue({ - render: h => h(App) + render: h => h(App) }).$mount('#app') diff --git a/src/paystack.vue b/src/paystack.vue index 57f9c21..2f2312c 100644 --- a/src/paystack.vue +++ b/src/paystack.vue @@ -1,11 +1,21 @@ - - Make Payment - + + + + Make Payment + + + export default { props: { + custombutton: { + type:Boolean, + default : false + }, embed: { type: Boolean, default: false
- - Pay me, My Money - -
+ + Pay me, My Money + + + + PAY WITH CUSTOM BUTTON + + +