mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-20 00:48:43 +00:00
21 lines
261 B
Vue
21 lines
261 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<el-button @click="onClick">devtools</el-button>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "index",
|
||
|
methods: {
|
||
|
onClick() {
|
||
|
console.log("devtools");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|