From: Evan You Date: Fri, 25 Oct 2019 02:23:08 +0000 (-0400) Subject: chore: include todomvc examples (need tests!) X-Git-Tag: v3.0.0-alpha.0~314 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F374%2Fhead;p=thirdparty%2Fvuejs%2Fcore.git chore: include todomvc examples (need tests!) --- diff --git a/packages/vue/examples/todomvc-classic.html b/packages/vue/examples/todomvc-classic.html new file mode 100644 index 0000000000..47a6b70b16 --- /dev/null +++ b/packages/vue/examples/todomvc-classic.html @@ -0,0 +1,198 @@ + + + +
+
+
+

todos

+ +
+
+ + +
    +
  • +
    + + + +
    + +
  • +
+
+
+ + {{ remaining }} {{ pluralize(remaining) }} left + + + +
+
+
+ + diff --git a/packages/vue/examples/todomvc-composition.html b/packages/vue/examples/todomvc-composition.html new file mode 100644 index 0000000000..9370a98df0 --- /dev/null +++ b/packages/vue/examples/todomvc-composition.html @@ -0,0 +1,207 @@ + + + +
+
+
+

todos

+ +
+
+ + +
    +
  • +
    + + + +
    + +
  • +
+
+
+ + {{ state.remaining }} + {{ state.remainingText }} + + + +
+
+
+ +