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

Commit 27a72bd8f1 fixed the example but introduced a useless import.
This commit is contained in:
Cédric Exbrayat 2019-12-09 20:16:21 +01:00 committed by Evan You
parent c53fae987d
commit 65bfe0130c

View 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)