diff --git a/Vue/src/components/HomeContent.vue b/Vue/src/components/HomeContent.vue index f0c323c..fb762e8 100644 --- a/Vue/src/components/HomeContent.vue +++ b/Vue/src/components/HomeContent.vue @@ -1,22 +1,97 @@ - + diff --git a/Vue/src/data.ts b/Vue/src/data.ts new file mode 100644 index 0000000..0b36fa4 --- /dev/null +++ b/Vue/src/data.ts @@ -0,0 +1,41 @@ +export type Customer = { + ID: number; + + CompanyName: string; + + Address: string; + + City: string; + + State: string; + + Zipcode: number; + + Phone: string; + + Fax: string; + + Website: string; +}; + +export const customers: Customer[] = [{ + ID: 1, + CompanyName: '', + Address: '702 SW 8th Street', + City: 'Bentonville', + State: 'Arkansas', + Zipcode: 72716, + Phone: '123456', + Fax: '(800) 555-2171', + Website: 'http://www.nowebsitesupermart.com', +}, { + ID: 2, + CompanyName: 'Electronics Depot', + Address: '2455 Paces Ferry Road NW', + City: 'NYC', + State: 'Georgia', + Zipcode: 30339, + Phone: '(800) 595-3232', + Fax: '(800) 595-3231', + Website: 'http://www.nowebsitedepot.com', +}];