33 lines
458 B
JavaScript
33 lines
458 B
JavaScript
export default {
|
|
/**
|
|
* Alignment of product grid
|
|
*/
|
|
align: {
|
|
type: 'string',
|
|
},
|
|
|
|
/**
|
|
* Number of columns.
|
|
*/
|
|
columns: {
|
|
type: 'number',
|
|
default: wc_product_block_data.default_columns,
|
|
},
|
|
|
|
/**
|
|
* Number of rows.
|
|
*/
|
|
rows: {
|
|
type: 'number',
|
|
default: wc_product_block_data.default_rows,
|
|
},
|
|
|
|
/**
|
|
* Product category, used to display only products in the given categories.
|
|
*/
|
|
categories: {
|
|
type: 'array',
|
|
default: [],
|
|
},
|
|
};
|