27 lines
440 B
Vue
27 lines
440 B
Vue
<template>
|
|
<div id="dietarySciencePopularization">
|
|
<img src="../../../assets/images/living/dietarySciencePopularization.jpg" alt="">
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {defineComponent} from "vue";
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
#dietarySciencePopularization {
|
|
width: 100%;
|
|
background-color: #F5F7FB;
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|