[bugfix] Tab: active type should be number (#665)

This commit is contained in:
neverland 2018-09-28 15:38:29 +08:00 committed by GitHub
parent 0e3ee3dc77
commit 7c7d69230d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 11 deletions

View File

@ -10,7 +10,7 @@ export function observe(vantOptions, options) {
if (key in props) {
var prop = props[key];
if (prop === null || !prop.type) {
if (prop === null || !('type' in prop)) {
prop = {
type: prop
};

View File

@ -6,7 +6,7 @@ export function observeProps(props) {
Object.keys(props).forEach(function (key) {
var prop = props[key];
if (prop === null || !prop.type) {
if (prop === null || !('type' in prop)) {
prop = {
type: prop
};

4
dist/tabs/index.js vendored
View File

@ -25,7 +25,7 @@ VantComponent({
color: String,
lineWidth: Number,
active: {
type: null,
type: Number,
value: 0
},
type: {
@ -139,7 +139,7 @@ VantComponent({
this.scrollIntoView();
},
// scroll active tab into view
scrollIntoView: function scrollIntoView(immediate) {
scrollIntoView: function scrollIntoView() {
var _this3 = this;
if (!this.data.scrollable) {

View File

@ -9,7 +9,7 @@ export function observe(vantOptions, options) {
Object.keys(watch).forEach(key => {
if (key in props) {
let prop = props[key];
if (prop === null || !prop.type) {
if (prop === null || !('type' in prop)) {
prop = { type: prop };
}
prop.observer = watch[key];

View File

@ -5,7 +5,7 @@ export function observeProps(props) {
Object.keys(props).forEach(key => {
let prop = props[key];
if (prop === null || !prop.type) {
if (prop === null || !('type' in prop)) {
prop = { type: prop };
}

View File

@ -115,7 +115,7 @@ Page({
| 参数 | 说明 | 类型 | 默认值 |
|-----------|-----------|-----------|-------------|
| active | 当前激活标签的索引 | `String` `Number` | `0` |
| active | 当前激活标签的索引 | `Number` | `0` |
| color | 标签颜色 | `String` | `#f44` |
| type | 样式风格,可选值为`card` | `String` | `line` |
| border | 是否展示外边框,仅在`line`风格下生效 | `Boolean` | `true` |

View File

@ -30,7 +30,7 @@ VantComponent({
color: String,
lineWidth: Number,
active: {
type: null,
type: Number,
value: 0
},
type: {
@ -84,7 +84,7 @@ VantComponent({
this.setActiveTab();
},
trigger(eventName, index) {
trigger(eventName: string, index: number) {
this.$emit(eventName, {
index,
title: this.data.tabs[index].data.title
@ -101,7 +101,7 @@ VantComponent({
}
},
setActive(active) {
setActive(active: number) {
if (active !== this.data.active) {
this.trigger('change', active);
this.setData({ active });
@ -153,7 +153,7 @@ VantComponent({
},
// scroll active tab into view
scrollIntoView(immediate) {
scrollIntoView() {
if (!this.data.scrollable) {
return;
}