Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unable to instrument Vue template code when using vue-loader #273

Open
trusktr opened this issue Mar 16, 2022 · 1 comment
Open

unable to instrument Vue template code when using vue-loader #273

trusktr opened this issue Mar 16, 2022 · 1 comment

Comments

@trusktr
Copy link

trusktr commented Mar 16, 2022

I can't figure any combination of options that will make this work with vue-loader.

What happens is that the <script> of a Vue component is instrumented just fine (it is outputted by vue-loader as a separate file, then babel-loader catches it, but not any expressions in a <template>.

The output "files" for template end with extensions like .vue?vue&type=template&id=qufnai32n or similar.

This is what my config looks like:

// babel.config.js
const babelConfig = {
    plugins: [['babel-plugin-istanbul', {
        extension: ['.js', '.vue'],
        excludeNodeModules: false

    }]]
};

module.exports = babelConfig;
// webpack.config.js
//...
            {
                test: /\.vue$/,
                use: [
                    {
                        loader: 'vue-loader',
                        // Attempt to use Babel with babel-plugin-istanbul (this doesn't make any difference, removing produces the same result)
                        options: {
                            compiler: require('vue-template-babel-compiler')
                        }
                    }
                ]
            },
            {
                test: /\.js$/,
                use: {
                    loader: 'babel-loader'
                }
            },
// ...

I also tried changing

                test: /\.js$/,

to

                test: /(\.js$)|(\?vue&type=template)/,
                exclude: /node_modules(?!.*\.vue)/,

but that still didn't manage to get vue <template>s instrumented.

Any ideas?

@SoybeanSun
Copy link

any ideas now ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants