Skip to content

Commit ffcda2d

Browse files
committed
more kebab-case examples
1 parent 63567f5 commit ffcda2d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/vue-sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ A number of special attributes exist:
6767

6868
```vue
6969
<BucketProvider
70-
:publishableKey="publishableKey"
70+
:publishable-key="publishableKey"
7171
:user="{ id: 'user_123', name: 'John Doe', email: 'john@acme.com' }"
7272
:company="{ id: 'acme_inc', plan: 'pro' }"
7373
></BucketProvider>
@@ -133,7 +133,7 @@ BucketProvider lets you define a template to be shown while BucketProvider is in
133133
```vue
134134
<template>
135135
<BucketProvider
136-
:publishableKey="publishableKey"
136+
:publishable-key="publishableKey"
137137
:user="user"
138138
:company="{ id: 'acme_inc', plan: 'pro' }"
139139
>

packages/vue-sdk/dev/plain/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const publishableKey = import.meta.env.VITE_PUBLISHABLE_KEY || "";
2020
</div>
2121
<BucketProvider
2222
v-else
23-
:publishableKey="publishableKey"
23+
:publishable-key="publishableKey"
2424
:user="user"
2525
:company="{ id: 'acme_inc', plan: 'pro' }"
2626
>

0 commit comments

Comments
 (0)