在线打印
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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>