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.
28 lines
361 B
28 lines
361 B
<template>
|
|
<div class=''>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
//数据
|
|
data() {
|
|
return {};
|
|
},
|
|
//创建前
|
|
created() { },
|
|
//方法
|
|
methods: {},
|
|
//子组件注册
|
|
components: {},
|
|
//计算
|
|
computed: {},
|
|
//监听
|
|
watch: {},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|
|
|