Skip to content

Commit

Permalink
示例中u-前缀统一为up-
Browse files Browse the repository at this point in the history
  • Loading branch information
jry committed Apr 9, 2024
1 parent 72a0fab commit a0b860d
Show file tree
Hide file tree
Showing 82 changed files with 7,769 additions and 7,815 deletions.
14 changes: 7 additions & 7 deletions src/pages/componentsA/backtop/backtop.nvue
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@
<text class="u-demo-block__title">自定义backTop(滚动页面即可在右下角看到图标)</text>
<view class="u-demo-block__content">
<view class="u-page__backTop-item">
<u-checkbox-group
<up-checkbox-group
placement="column"
shape="square"
@change="checkboxChange"
v-model="value"
>
<u-checkbox
<up-checkbox
:customStyle="{marginBottom: '8px'}"
v-for="(item, index) in checkboxList"
:key="index"
:label="item.name"
:name="item.name"
>
</u-checkbox>
</u-checkbox-group>
</up-checkbox>
</up-checkbox-group>
</view>
</view>
</view>
<u-back-top
<up-back-top
:right="backTopData.right"
:customStyle="backTopData.customStyle"
:bottom="backTopData.bottom"
Expand All @@ -35,14 +35,14 @@
:duration="backTopData.duration"
:scrollTop="scrollTop"
@click="click"
></u-back-top>
></up-back-top>
</view>
</template>

<script>
export default {
data() {
return {
return {
value: ['自定义图标'],
backTopData: {
mode: 'circle',
Expand Down
Loading

0 comments on commit a0b860d

Please sign in to comment.