Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/catalog/store-enable-wizard/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/catalog/store-enable-wizard/src/title-box.js

export const TitleBox = {
	props: {
		options: {
			type: Object,
			required: true,
		},
	},
	template: `
		<div v-if="options !== null" class="inventory-management-card-title-box">
			<div v-html="options.title" class="inventory-management-card-title"></div>
			<div
				v-if="options.subTitle"
				v-html="options.subTitle" class="inventory-management-card-subtitle">
			</div>
		</div>
	`,
};