nativescript-ui-feedback
nativescript-ui-feedback copied to clipboard
Nativescript-ui-calendar no vue folder after installing
Hello, I'm trying to use nativescript-ui-calendar with nativescript-vue, but after installing the package using tns plugin add nativescript-ui-calendar and checking the folder in node_modules there is no "vue" folder only angular, which means my import won't work.
import CalendarView from "nativescript-ui-calendar/vue";
Vue.use(CalendarView);

I'm using nativescript 8, below is my package.json
{
"name": "myapp",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"lint:fix": "eslint --fix --ext .vue ."
},
"dependencies": {
"@nativescript/core": "8.1.1",
"@nativescript/email": "^2.0.5",
"@nativescript/geolocation": "^7.2.1",
"@nativescript/local-notifications": "^5.0.3",
"@nativescript/theme": "^3.0.1",
"@nstudio/nativescript-cardview": "^2.0.1",
"@triniwiz/nativescript-toasty": "^4.1.3",
"@vue/devtools": "^5.3.4",
"base-64": "^1.0.0",
"nativescript-clipboard": "^2.1.1",
"nativescript-cognito": "^1.1.3-alpha",
"nativescript-exit": "^1.0.1",
"nativescript-google-maps-sdk": "file:nativescript-google-maps-sdk-4.0.0.tgz",
"nativescript-ibeacon": "file:nativescript-ibeacon-master",
"nativescript-modal-datetimepicker": "^2.1.5",
"nativescript-openurl": "^1.0.2",
"nativescript-socketio": "^3.3.1",
"nativescript-theme-core": "^2.0.24",
"nativescript-toasty": "^3.0.0-alpha.2",
"nativescript-ui-calendar": "^8.0.0",
"nativescript-ui-chart": "^9.0.0",
"nativescript-ui-gauge": "^8.0.0",
"nativescript-vue": "^2.9.0",
"nativescript-vue-devtools": "^1.5.1",
"tns-core-modules": "^6.5.27",
"typescript": "^4.4.3",
"vue": "^2.6.14",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@nativescript/ios": "8.1.0",
"@nativescript/types": "8.1.1",
"@nativescript/webpack": "~5.0.0-beta.0",
"@triniwiz/nativescript-socketio": "^5.0.1",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0",
"babylon": "6.18.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^6.7.2",
"eslint-plugin-compat": "^3.13.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.17.0",
"image-source-loader": "^0.6.5",
"lazy": "1.0.11",
"nativescript-vue-template-compiler": "^2.9.0",
"nativescript-worker-loader": "^0.12.1",
"node-sass": "^6.0.1",
"prettier": "^2.4.0",
"terser-webpack-plugin": "^5.2.4",
"vue-eslint-parser": "^7.11.0",
"vue-loader": "^15.9.8",
"webpack-bundle-analyzer": "^4.4.2"
},
"main": "./app/main.js"
}
Is there any way to use it with Vue and have the vue folder generated?