feat(cli): add skipInstall option

This commit is contained in:
陈嘉涵
2019-12-12 11:10:19 +08:00
parent 9155a7a491
commit 8e8892b323
4 changed files with 18 additions and 15 deletions
+3 -12
View File
@@ -1,25 +1,16 @@
<template>
<demo-section>
<demo-block :title="$t('basicUsage')">
<img
v-for="img in imageList"
v-lazy="img"
>
<img v-for="img in imageList" v-lazy="img">
</demo-block>
<demo-block :title="$t('title2')">
<div
v-for="img in backgroundImageList"
v-lazy:background-image="img"
/>
<div v-for="img in backgroundImageList" v-lazy:background-image="img" />
</demo-block>
<demo-block :title="$t('title3')">
<lazy-component>
<img
v-for="img in componentImageList"
v-lazy="img"
>
<img v-for="img in componentImageList" v-lazy="img">
</lazy-component>
</demo-block>
</demo-section>