We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74633f9 commit 09fc7eaCopy full SHA for 09fc7ea
.eslintrc.js
@@ -12,5 +12,14 @@ module.exports = {
12
plugins: [
13
],
14
// add your custom rules here
15
- rules: {}
+ rules: {
16
+ "no-console": [
17
+ "error",
18
+ {
19
+ allow: [
20
+ "error"
21
+ ]
22
+ }
23
24
25
}
pages/index.vue
@@ -71,11 +71,9 @@ export default Vue.extend({
71
i < originalRhs.length;
72
i++
73
) {
74
- console.log(originalRhs[i])
75
diff.push([[1, originalRhs[i]]])
76
77
78
- console.log(diff)
79
this.$router.push({
80
path: `/diff/${urlEncode(JSON.stringify(diff))}`,
81
})
0 commit comments