Skip to content

Commit

Permalink
revert: 发布新版本 0.26.2 (2023-03-01) 🤭🤭🤭
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyh2001 committed Mar 1, 2023
1 parent b72290e commit 22913ae
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 14 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@
English | [Chinese](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.md)

## 0.26.2 (2023-03-01)

**Fix**

- Fix the `f-slider` component offset error

**Others**

- Add a `size` configuration item for the `f-select` component
- Optimize `f-pagination` components

## 0.26.1 (2023-02-28)

**Fix**
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@

中文 | [英文](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.en-US.md)

## 0.26.2 (2023-03-01)

**修复**

- 修复 `f-slider` 组件偏移量错误的问题

**其它**

- `f-select` 组件新增 `size` 配置项
- 优化 `f-pagination` 组件

## 0.26.1 (2023-02-28)

Expand Down
11 changes: 11 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

中文 | [英文](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.en-US.md)

## 0.26.2 (2023-03-01)

**修复**

- 修复 `f-slider` 组件偏移量错误的问题

**其它**

- `f-select` 组件新增 `size` 配置项
- 优化 `f-pagination` 组件

## 0.26.1 (2023-02-28)

**修复**
Expand Down
4 changes: 2 additions & 2 deletions packages/fighting-design/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fighting-design",
"version": "0.26.1",
"version": "0.26.2",
"description": "Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.",
"keywords": [
"fighting",
Expand Down Expand Up @@ -57,4 +57,4 @@
},
"homepage": "https://fighting.tianyuhao.cn",
"repository": "https://github.com/FightingDesign/fighting-design"
}
}
15 changes: 3 additions & 12 deletions start/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
<script lang="ts" setup>
import { ref } from 'vue'
<script lang="ts" setup></script>

const current = ref(1)
const total = ref(100)
<template></template>

const pagesize = ref(10)
const pageSizes = ref([10, 20, 30, 40, 50])
</script>

<template>
<f-pagination v-model:current="current" :total="total" :page-size="pagesize" :page-sizes="pageSizes" />
</template>
<style lang="scss" scoped></style>

0 comments on commit 22913ae

Please sign in to comment.