bladex前端ui项目,基于avue-cli2.0开发
包含基础工作流,不包含表单设计器
https://git.javablade.com/blade/Saber
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.
20 lines
412 B
20 lines
412 B
|
7 years ago
|
<template>
|
||
|
|
<basic-container>
|
||
|
|
<h3>请打开浏览器控制台,然后点击下面的按钮</h3>
|
||
|
|
<el-button type="danger"
|
||
|
|
size="small"
|
||
|
|
@click="handleNewError">触发一个错误
|
||
|
|
</el-button>
|
||
|
|
</basic-container>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
methods: {
|
||
|
|
handleNewError() {
|
||
|
|
console.log(a); // eslint-disable-line
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|