Преглед изворни кода

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

Commit 27a72bd8f150be956a7931b64590cf3867bb4803 fixed the example but introduced a useless import.
Cédric Exbrayat пре 6 година
родитељ
комит
65bfe0130c
1 измењених фајлова са 1 додато и 1 уклоњено
  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)