Skip to content

Commit c9d0e3a

Browse files
committed
ci: e2e test fix
1 parent 0f2cede commit c9d0e3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/composition/todomvc.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<script src="../../dist/vue.js"></script>
1+
<script src="../../dist/vue.min.js"></script>
22
<link
33
rel="stylesheet"
44
href="../../node_modules/todomvc-app-css/index.css"
@@ -90,7 +90,7 @@ <h1>todos</h1>
9090
<script>
9191
const { reactive, computed, watchEffect, onMounted, onUnmounted } = Vue
9292

93-
const STORAGE_KEY = 'todos-vuejs-3.x'
93+
const STORAGE_KEY = 'todos-vuejs-3.x-composition'
9494
const todoStorage = {
9595
fetch() {
9696
const todos = JSON.parse(localStorage.getItem(STORAGE_KEY) || '[]')

0 commit comments

Comments
 (0)