27 lines
345 B
Vue
27 lines
345 B
Vue
<template>
|
|
<div>
|
|
这是子组件,子蜂箱
|
|
<u-button type="primary" loading loadingText="加载中"></u-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Fx',
|
|
created(){
|
|
console.log('子 created')
|
|
},
|
|
mounted(){
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style> |