Telws.vue 317 B

123456789101112131415
  1. <template>
  2. <telws-view :default-url="telwsUrl" disable-url />
  3. </template>
  4. <script>
  5. import { mapGetters } from "vuex";
  6. export default {
  7. computed: {
  8. ...mapGetters(["getTelwsUrl"]),
  9. telwsUrl(){
  10. return window.location.protocol + "//" + window.location.host + this.getTelwsUrl()
  11. }
  12. }
  13. };
  14. </script>