在线打印
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.

преди 6 месеца
12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div id="app" data-theme="kr-designer">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {}
  10. },
  11. created() {
  12. let licenseInfo = {
  13. strCompanyName: '某某某公司',
  14. strLicense: '*****',
  15. strLicenseA: '',
  16. strLicenseB: '',
  17. }
  18. // 设置Lodop产品注册信息
  19. this.$lodop.setLicenses(licenseInfo)
  20. },
  21. methods: {},
  22. }
  23. </script>
  24. <style>
  25. #app {
  26. height: 100%;
  27. }
  28. </style>