30 lines
445 B
Vue
30 lines
445 B
Vue
<!--
|
|
Copyright © light <light_jiang2015@outlook.com>
|
|
2019-05-12-23:48
|
|
-->
|
|
<style scoped></style>
|
|
<template>
|
|
<div></div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
components: {},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
watch: {},
|
|
props: {},
|
|
methods: {},
|
|
beforeCreate() {},
|
|
created() {},
|
|
mounted() {},
|
|
beforeDestroy() {},
|
|
destroyed() {},
|
|
beforeUpdate() {},
|
|
updated() {},
|
|
activated() {},
|
|
deactivated() {}
|
|
}
|
|
</script>
|