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.
 
 
 

31 lines
463 B

<template>
<div id="app" data-theme="kr-designer">
<router-view />
</div>
</template>
<script>
export default {
data() {
return {}
},
created() {
let licenseInfo = {
strCompanyName: '某某某公司',
strLicense: '*****',
strLicenseA: '',
strLicenseB: '',
}
// 设置Lodop产品注册信息
this.$lodop.setLicenses(licenseInfo)
},
methods: {},
}
</script>
<style>
#app {
height: 100%;
}
</style>