From ea66956194ae2c98760b3d262d81575d1b61e8d3 Mon Sep 17 00:00:00 2001 From: rigor789 Date: Mon, 15 Jun 2020 16:05:30 +0200 Subject: [PATCH] test: add repro for rendering issue --- demo_vue/app/components/ListItem.vue | 36 +++++ demo_vue/app/components/Repro.vue | 229 +++++++++++++++++++++++++++ demo_vue/app/main.ts | 2 +- demo_vue/package.json | 1 + 4 files changed, 267 insertions(+), 1 deletion(-) create mode 100644 demo_vue/app/components/ListItem.vue create mode 100644 demo_vue/app/components/Repro.vue diff --git a/demo_vue/app/components/ListItem.vue b/demo_vue/app/components/ListItem.vue new file mode 100644 index 00000000..ca34a674 --- /dev/null +++ b/demo_vue/app/components/ListItem.vue @@ -0,0 +1,36 @@ + + + diff --git a/demo_vue/app/components/Repro.vue b/demo_vue/app/components/Repro.vue new file mode 100644 index 00000000..fb625326 --- /dev/null +++ b/demo_vue/app/components/Repro.vue @@ -0,0 +1,229 @@ + + + diff --git a/demo_vue/app/main.ts b/demo_vue/app/main.ts index 5fe4026d..244116dd 100644 --- a/demo_vue/app/main.ts +++ b/demo_vue/app/main.ts @@ -1,5 +1,5 @@ import Vue from 'nativescript-vue'; -import App from './components/App.vue'; +import App from './components/Repro.vue'; import { Label as HTMLLabel } from 'nativescript-htmllabel'; // require first to get Font res loading override // Vue.registerElement('Label', () => HTMLLabel); diff --git a/demo_vue/package.json b/demo_vue/package.json index 00334047..0412aea5 100644 --- a/demo_vue/package.json +++ b/demo_vue/package.json @@ -22,6 +22,7 @@ "dependencies": { "@mdi/font": "4.9.95", "@nativescript/core": "^6.5.1", + "lorem-ipsum": "^2.0.3", "nativescript-collectionview": "../plugin", "nativescript-gesturehandler": "^0.1.8", "nativescript-htmllabel": "^1.0.32",