]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: fix grid composition example (#519) [ci skip]
authorCédric Exbrayat <cexbrayat@users.noreply.github.com>
Mon, 9 Dec 2019 19:16:21 +0000 (20:16 +0100)
committerEvan You <yyx990803@gmail.com>
Mon, 9 Dec 2019 19:16:21 +0000 (14:16 -0500)
Commit 27a72bd8f150be956a7931b64590cf3867bb4803 fixed the example but introduced a useless import.

packages/vue/examples/composition/grid.html

index 2d2f53e9919fd525eabb6186d75d6cc4e05d5ccb..3728bfd996b992e2d7413ae2c1f58ad807600b25 100644 (file)
@@ -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)