Просмотр исходного кода

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

Commit 27a72bd8f150be956a7931b64590cf3867bb4803 fixed the example but introduced a useless import.
Cédric Exbrayat 6 лет назад
Родитель
Сommit
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)