Skip to content

Commit

Permalink
ci: e2e test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Jun 20, 2022
1 parent 0f2cede commit c9d0e3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/composition/todomvc.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script src="../../dist/vue.js"></script>
<script src="../../dist/vue.min.js"></script>
<link
rel="stylesheet"
href="../../node_modules/todomvc-app-css/index.css"
Expand Down Expand Up @@ -90,7 +90,7 @@ <h1>todos</h1>
<script>
const { reactive, computed, watchEffect, onMounted, onUnmounted } = Vue

const STORAGE_KEY = 'todos-vuejs-3.x'
const STORAGE_KEY = 'todos-vuejs-3.x-composition'
const todoStorage = {
fetch() {
const todos = JSON.parse(localStorage.getItem(STORAGE_KEY) || '[]')
Expand Down

0 comments on commit c9d0e3a

Please sign in to comment.