diff --git a/src/components/inplace/Inplace.vue b/src/components/inplace/Inplace.vue index e418f5d8e..f73d5386e 100644 --- a/src/components/inplace/Inplace.vue +++ b/src/components/inplace/Inplace.vue @@ -1,10 +1,18 @@ diff --git a/src/components/orderlist/OrderList.vue b/src/components/orderlist/OrderList.vue index b044bf695..b2d2f140a 100644 --- a/src/components/orderlist/OrderList.vue +++ b/src/components/orderlist/OrderList.vue @@ -290,9 +290,6 @@ export default { } } } - }, - computed: { - }, components: { 'OLButton': Button diff --git a/src/views/inplace/InplaceDemo.vue b/src/views/inplace/InplaceDemo.vue index f4f7f3643..99c569baa 100644 --- a/src/views/inplace/InplaceDemo.vue +++ b/src/views/inplace/InplaceDemo.vue @@ -11,10 +11,10 @@

Input

@@ -25,12 +25,12 @@ View Picture

Lazy Data

- + @@ -56,6 +56,7 @@ import InplaceDoc from './InplaceDoc'; export default { data() { return { + text: null, cars: null } }, @@ -64,7 +65,7 @@ export default { this.carService = new CarService(); }, methods: { - onOpen() { + loadData() { this.carService.getCarsSmall().then(data => this.cars = data); } },