This repository was archived by the owner on Nov 26, 2021. It is now read-only.
This repository was archived by the owner on Nov 26, 2021. It is now read-only.
integrating with vue-cli #430
Closed
Description
New to this stuff and will be needing help.
-
Vue.js version: 2.5.13
-
consumed using: vue-cli - webpack
-
FULL error message (including stack trace):
Uncaught ReferenceError: process is not defined
at eval (utils.js?bc36:3)
at Object../node_modules/micromatch/lib/utils.js (app.js:2740)
at webpack_require (app.js:679)
at fn (app.js:89)
at eval (expand.js?58f9:10)
at Object../node_modules/micromatch/lib/expand.js (app.js:2724)
at webpack_require (app.js:679)
at fn (app.js:89)
at eval (index.js?7fb9:10)
at Object../node_modules/micromatch/index.js (app.js:2708) -
relevant code:
<template>
<v-server-table :columns="['CreatedDate', 'AdminActivityName', 'CreatedBy', 'Changes']" />
</template>
<script>
import Vue from 'vue'
import { ServerTable } from 'vue-tables-2';
</script>
- steps for reproducing the issue:
- created a new project from vue cli using default webpack template
- npm install vue-tables-2
- imported Server table from the .vue file and received the error.