Skip to content

Instantly share code, notes, and snippets.

@tedpatrick
Created February 20, 2018 03:28
Show Gist options
  • Save tedpatrick/7bc6cce6f3a79291ea9062656dcca9a2 to your computer and use it in GitHub Desktop.
Save tedpatrick/7bc6cce6f3a79291ea9062656dcca9a2 to your computer and use it in GitHub Desktop.
<tbr>
Vue.component( 'tbr' , {
template:'<component>{{value}}<br v-if="value"/></component>',
props:['value']
});
<tbr :value="activeCommerceItem.shippingGroup.shippingAddress.firstName + ' ' + activeCommerceItem.shippingGroup.shippingAddress.lastName"></tbr>
<tbr :value="activeCommerceItem.shippingGroup.shippingAddress.company"></tbr>
<tbr :value="activeCommerceItem.shippingGroup.shippingAddress.street1"></tbr>
<tbr :value="activeCommerceItem.shippingGroup.shippingAddress.street2"></tbr>
<tbr :value="activeCommerceItem.shippingGroup.shippingAddress.city"></tbr>
<tbr :value="activeCommerceItem.shippingGroup.shippingAddress.state"></tbr>
<tbr :value="activeCommerceItem.shippingGroup.shippingAddress.zipcode"></tbr>
<tbr :value="activeCommerceItem.shippingGroup.shippingAddress.phoneNumber"></tbr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment