vue2-datatable icon indicating copy to clipboard operation
vue2-datatable copied to clipboard

tdComp not working properly when reloading the page in Internet Explorer and Edge

Open Sakthi002 opened this issue 7 years ago • 2 comments

tdComp comes blank when reloading the page. before reload internet explorer after reloading

Sakthi002 avatar Sep 24 '18 06:09 Sakthi002

plz provide a reproduction?

kenberkeley avatar Sep 26 '18 02:09 kenberkeley

My Internet explorer issues were caused by ES6 standards followed in the library, not being implemented in IE. I could direct my compiler (laravel mix) to transpile the .js in the node modules folder. Just leaving it here for posterity:

mix.webpackConfig({
    module: {
        rules: [
            {
                test: /\.js$/,
                use: [
                    {
                        loader: 'babel-loader',
                        options: Config.babel()
                    }
                ],
                exclude: /(node_modules\/(?!(vue2-datatable-component)\/.*))/,
        },
    ]
    },

tsaltena avatar Dec 03 '18 11:12 tsaltena