diff --git a/README.md b/README.md index 9687e9f..3e99775 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -![](https://img.shields.io/endpoint?url=https://codecentral.devexpress.com/api/v1/VersionRange/723096689/23.1.3%2B) [![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/T1202789) [![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183) diff --git a/Vue/src/App.vue b/Vue/src/App.vue index af7776e..3b51b3a 100644 --- a/Vue/src/App.vue +++ b/Vue/src/App.vue @@ -1,9 +1,9 @@ diff --git a/Vue/src/components/HomeContent.vue b/Vue/src/components/HomeContent.vue index f0c323c..5050ba2 100644 --- a/Vue/src/components/HomeContent.vue +++ b/Vue/src/components/HomeContent.vue @@ -1,22 +1,107 @@ + - 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', +}];