diff options
author | theia | 2023-02-02 11:13:32 -0500 |
---|---|---|
committer | theia | 2023-02-02 11:13:32 -0500 |
commit | ae2b88c2f032e6a8bbfe04a80975515ce65acdfa (patch) | |
tree | 4448bb92e5797e2f1b9fa290ca6f8362027d4429 /plugins/vue/demo/index.html | |
parent | 88122d4e82cdb2a9796081512e11b43968befdcb (diff) |
No wrapping components with graffiti-objects
Diffstat (limited to 'plugins/vue/demo/index.html')
-rw-r--r-- | plugins/vue/demo/index.html | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/plugins/vue/demo/index.html b/plugins/vue/demo/index.html index 9b51f6d..6f0fb71 100644 --- a/plugins/vue/demo/index.html +++ b/plugins/vue/demo/index.html @@ -44,10 +44,7 @@ </h1> <p> - My name is: - <graffiti-objects :tags="[$graffitiID.value]" v-slot="{objects}"> - <name :of="$graffitiID.value" :objects="objects"></name> - </graffiti-objects> + My name is: <name :of="$graffitiID.value"></name> </p> <set-my-name :tags="[$graffitiID.value]"></set-my-name> @@ -58,9 +55,7 @@ Chatting </h1> - <graffiti-objects :tags="['demo']" v-slot="{objects}"> - <chat :tags="['demo']" :objects="objects"></chat> - </graffiti-objects> + <chat :tags="['demo']"></chat> <!-- Add a like button --> @@ -70,9 +65,8 @@ <!-- different contexts --> - <!-- Private messages --> - + <!--------------------------------------------------------------> </body> </html> |