You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
359 B
17 lines
359 B
|
8 months ago
|
<template>
|
||
|
|
<basic-container>
|
||
|
|
<h3>请打开浏览器控制台,然后点击下面的按钮</h3>
|
||
|
|
<el-button type="danger" @click="handleNewError">触发一个错误</el-button>
|
||
|
|
</basic-container>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
methods: {
|
||
|
|
handleNewError() {
|
||
|
|
window.console.log(a); // eslint-disable-line
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|