Procházet zdrojové kódy

chore: fix grid composition example (#519) [ci skip]

Commit 27a72bd8f150be956a7931b64590cf3867bb4803 fixed the example but introduced a useless import.
Cédric Exbrayat před 6 roky
rodič
revize
65bfe0130c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      packages/vue/examples/composition/grid.html

+ 1 - 1
packages/vue/examples/composition/grid.html

@@ -26,7 +26,7 @@
 </script>
 <!-- DemoGrid component script -->
 <script>
-const { reactive, computed, toRefs } = Vue
+const { reactive, computed } = Vue
 
 const capitalize = str => str.charAt(0).toUpperCase() + str.slice(1)