Not working in IE 11
See original GitHub issueI’ve created a sample project with latest vue-cli and added feathers libraries. Error on ie11 attached
api/feathers-client.js
import $config from '@/config'
import feathers from '@feathersjs/client'
import io from 'socket.io-client'
const socket = io($config.feathersServer, { transports: ['websocket'], upgrade: false })
const feathersClient = feathers()
feathersClient.configure(feathers.socketio(socket));
feathersClient.configure(feathers.authentication());
export default feathersClient
store/index.js
import Vue from 'vue'
import Vuex from 'vuex'
import feathersVuex from 'feathers-vuex'
import feathersClient from '../api/feathers-client'
const { service, auth, FeathersVuex } = feathersVuex(feathersClient, { idField: '_id' })
Vue.use(Vuex)
Vue.use(FeathersVuex)
export default new Vuex.Store({
state: {
},
mutations: {
},
actions: {
}
})
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Internet Explorer has stopped working - Microsoft Support
Open Internet Explorer and select Tools > Internet options. · Select the Advanced tab, and then select Reset. · In the Reset Internet...
Read more >SOLVED: Internet Explorer 11 Not Responding - Appuals
SOLVED: Internet Explorer 11 Not Responding · Solution 1: Install any and all available Windows updates · Solution 2: Run the Internet Explorer ......
Read more >Internet Explorer 11 has retired and is officially out of support ...
After 25+ years of helping people use and experience the web, Internet Explorer (IE) is officially retired and out of support as of...
Read more >Microsoft Will Retire Internet Explorer 11 in June 2022 ... - InfoQ
Microsoft Edge with IE mode is officially replacing the Internet Explorer 11 desktop application on Windows 10. As a result, the Internet ...
Read more >What to Do If Internet Explorer 11 Won't Launch on Windows ...
Faulty Internet Explorer settings · Damaged or missing system files · Incompatible third-party software · Problematic add-ons and corrupted cache files · Malicious ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi there,
I’ve finally found a way. It’s working on the production in couple of days. I’ll create a clean project as a sample and share as soon as possible.
@stwessl and @cemevren, did you ever published a sample project with IE support?