chore: add warn of deprecated slot (#8972)

* chore: migrate cell default slot

* chore: add warn of deprecated slot
This commit is contained in:
neverland 2021-07-02 16:53:11 +08:00 committed by GitHub
parent bc8bad0247
commit b3ca94dfad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 18 deletions

View File

@ -33,7 +33,7 @@ export const cellProps = {
valueClass: unknownProp,
labelClass: unknownProp,
titleClass: unknownProp,
titleStyle: null as unknown as PropType<string | CSSProperties>,
titleStyle: (null as unknown) as PropType<string | CSSProperties>,
arrowDirection: String as PropType<CellArrowDirection>,
clickable: {
type: Boolean as PropType<boolean | null>,
@ -47,6 +47,14 @@ export default defineComponent({
props: extend({}, cellProps, routeProps),
setup(props, { slots }) {
if (process.env.NODE_ENV !== 'production') {
if (slots.default) {
console.warn(
'[Vant] Cell: "default" slot is deprecated, please use "value" slot instead.'
);
}
}
const route = useRoute();
const renderLabel = () => {

View File

@ -12,14 +12,6 @@ exports[`should change icon class prefix when using icon-prefix prop 1`] = `
</div>
`;
exports[`should render default slot correctly 1`] = `
<div class="van-cell">
<div class="van-cell__value van-cell__value--alone">
Custom Value
</div>
</div>
`;
exports[`should render extra slot correctly 1`] = `
<div class="van-cell">
Custom Extra

View File

@ -1,15 +1,6 @@
import { Cell } from '..';
import { mount } from '../../../test';
test('should render default slot correctly', () => {
const wrapper = mount(Cell, {
slots: {
default: () => 'Custom Value',
},
});
expect(wrapper.html()).toMatchSnapshot();
});
test('should render value slot correctly', () => {
const wrapper = mount(Cell, {
slots: {

View File

@ -92,6 +92,12 @@ export default defineComponent({
emits: ['confirm', 'cancel', 'change'],
setup(props, { emit, slots }) {
if (slots.default) {
console.warn(
'[Vant] Picker: "default" slot is deprecated, please use "toolbar" slot instead.'
);
}
const formattedColumns = ref<PickerObjectColumn[]>([]);
const { text: textKey, values: valuesKey, children: childrenKey } = extend(