Description
Hello, i have tried to follow your Getting started with a Vue2 project.
I have created an empty project with VueJS 2 and i have add froala as mentioned in your documentation :
"froalacharts": "^1.0.0","vue": "^2.6.12","vue-froalacharts": "^1.0.0"
So the next step of the documentation is to add in my App.js the imports and register vue to use it so i have add :
import VueFroalaCharts from 'vue-froalacharts'; import FroalaCharts from 'froalacharts'; import FroalaTheme from 'froalacharts/themes/froalacharts.theme.froala';
and
Vue.use(VueFroalaCharts, FroalaCharts, FroalaTheme);
But when i start the project i have an error
vue-froalacharts in ./src/main.js To install it, you can run: npm install --save vue-froalacharts
But in my nodes_module, i have the folder vue-froalacharts.
Am I doing something wrong ?