Browse Source

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

Commit 27a72bd8f150be956a7931b64590cf3867bb4803 fixed the example but introduced a useless import.
Cédric Exbrayat 6 years ago
parent
commit
65bfe0130c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/vue/examples/composition/grid.html

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

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