mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-19 08:28:41 +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>
|