async function productCard(path) { const template = await loadTemplateAsync(path) Vue.component('product-card', { name: 'product-card', template, props: ['product', 'change-page', 'add-to-cart', 'is-stall'], data: function () { return {} }, methods: {}, created() {} }) }