vue-awesome icon indicating copy to clipboard operation
vue-awesome copied to clipboard

Uncaught TypeError: t is not a function

Open brianecook opened this issue 2 years ago • 0 comments

Hello, I am getting the following error when setting up vue-awesome:

Uncaught TypeError: t is not a function Uncaught TypeError: t is not a function
    render webpack://shopify-starter/./node_modules/vue-awesome/components/Icon.js?:5

with corresponds with this bit in the source code:

(function(i,e){return t("path",{attrs:i,key:"path-"+e})})

Here is my webpack config:

module: {
    rules: [
      {
        test: /\.vue$/,
        loader: 'vue-loader',
      },
      {
        test: /\.js$/,
        use: {
          loader: 'babel-loader',
        },
        include: [path.resolve(__dirname, 'node_modules/vue-awesome')],
        exclude: /node_modules/,
      },
    ],
  },

Thanks for any help you can provide!

brianecook avatar Dec 21 '22 17:12 brianecook