Skip to content

Commit

Permalink
doc: fix vuepress build
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic100 committed Feb 6, 2021
1 parent d3af2ce commit 0b0ed2a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/.vuepress/components/CropPlayground.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@
<div class="md-layout md-gutter">
<div class="md-layout-item">
<label class="md-caption">Pose Heading</label>
<vue-slider v-model="panoData.poseHeading" min="0" max="360" :marks="[0,90,180,270,360]" :drag-on-click="true"
<vue-slider v-model="panoData.poseHeading" :min="0" :max="360" :marks="[0,90,180,270,360]" :drag-on-click="true"
:disabled="oading"/>
</div>
<div class="md-layout-item">
<label class="md-caption">Pose Pitch</label>
<vue-slider v-model="panoData.posePitch" min="-90" max="90" :marks="[-90,0,90]" :drag-on-click="true"
<vue-slider v-model="panoData.posePitch" :min="-90" :max="90" :marks="[-90,0,90]" :drag-on-click="true"
:disabled="loading"/>
</div>
<div class="md-layout-item">
<label class="md-caption">Pose Roll</label>
<vue-slider v-model="panoData.poseRoll" min="-180" max="180" :marks="[-180,-90,0,90,180]" :drag-on-click="true"
<vue-slider v-model="panoData.poseRoll" :min="-180" :max="180" :marks="[-180,-90,0,90,180]" :drag-on-click="true"
:disabled="loading"/>
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion docs/.vuepress/enhanceApp.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { MdButton, MdCheckbox, MdField } from 'vue-material/dist/components';
import VSwatches from 'vue-swatches';
import VueSlider from 'vue-slider-component'
import VueSlider from 'vue-slider-component/dist-css/vue-slider-component.umd.min';

import 'vue-material/dist/theme/default.css'
import 'vue-material/dist/vue-material.min.css'
import 'vue-slider-component/dist-css/vue-slider-component.css';
import 'vue-slider-component/theme/antd.css'
import 'vue-swatches/dist/vue-swatches.css';

Expand Down

0 comments on commit 0b0ed2a

Please sign in to comment.