Răsfoiți Sursa

chore(examples)

Ryan Chandler 5 ani în urmă
părinte
comite
168ce14afa
1 a modificat fișierele cu 6 adăugiri și 0 ștergeri
  1. 6 0
      examples/index.html

+ 6 - 0
examples/index.html

@@ -8,6 +8,12 @@
             <input type="text" x-model="$store.dropdown.hello">
             <span x-text="$store.dropdown.hello"></span>
         </div>
+        
+        <h3>The button below is a completely different component</h3>
+
+        <div x-data x-subscribe>
+            <button @click="$store.dropdown.hello = 'amazing'">Update world to amazing</button>
+        </div>
         <script>
             Spruce.store('dropdown', {
                 hello: 'world'