25 lines
542 B
Vue
25 lines
542 B
Vue
|
<template>
|
|||
|
<view style="padding: 20rpx;" v-html="datas">
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script setup>
|
|||
|
import {
|
|||
|
ref
|
|||
|
} from "vue"
|
|||
|
import {
|
|||
|
aboutUsApi
|
|||
|
} from "@/api/quotation.js"
|
|||
|
|
|||
|
const datas = ref('<p>四川里海科技有限公司,成立于2019年,位于四川省泸州市,是一家以从事互联网和相关服务为主的企业。企业注册资本1000万人民币,实缴资本826万人民币。<\/p>')
|
|||
|
|
|||
|
const getDatas = () => {
|
|||
|
aboutUsApi().then(res => {
|
|||
|
datas.value = res
|
|||
|
})
|
|||
|
}
|
|||
|
// getDatas()
|
|||
|
</script>
|
|||
|
|
|||
|
<style>
|
|||
|
</style>
|