26 lines
463 B
Vue
Raw Normal View History

<template>
<div>
666
<el-button type="primary" @click="tab">test</el-button>
</div>
2019-03-15 10:08:39 +08:00
</template>
<script>
export default {
data: () => ({}),
computed: {},
created() {
},
mounted() {
},
methods: {
tab() {
chrome.tabs.create({url: 'pages/app.html'})
}
}
2019-03-15 10:08:39 +08:00
}
</script>
<style lang="scss">
div {
color: blue
}
2019-03-15 10:08:39 +08:00
</style>