383 comments found.
Hi.
We are using this template to create a web application. We have trouble with data tables. We need to make data tables clickable, so when user click on a row should be open a single page.
I don’t see any example with clickable table on your demo’s. I found this in internet but it’s not working with your tables. https://codepen.io/nsiggel/pen/KRdGgECan you help us about that ?
Karmajeet Singh <karamjeet@theironnetwork.org> 6:07 PM (2 minutes ago) to me
Hi,
Thanks for reaching out!
As we used vuetify as CSS framework for the theme so this feature is not provided by vuetify inbuilt.
In further, As you provided us a reference link in your mail, We didn’t understand what do you want exactly?
Like in your query you want to open a single page on the click of every row. At another end in the link, by clicking the row of the table it opens only alert box not even modal.
So please explain in detail what you exactly want to achieve. We will guide you accordingly.
Let us know if you need anything else at support@theironnetwork.org
Thanks and have a nice day!
Hi,
Thanks for the fast response.
Yes the example opens an alert box but even that code when we use it with your template it doesn’t work.
What we’re intending to do is instead of opening the alert box on row table click redirect it to another link example /project/details/1
Best Regards
Hi,
Thanks for reaching out again!
By the way, These type of requirements comes under custom work and we charge customers for the same but this time we are sending you the steps because this type of requirement we had done for another customer a long time ago.
In vuetify 2.0 data-tables component has been updated.To achieve what you want you need to do the follwing steps,
1. Open vuely and go to the src/views/tables/Standard.vue and replace the code of template tag inside v-data-table component with the following
<template v-slot:body=”{ items }”> <tbody> <router-link v-for=”(item,i) in items” :key=”i” :to=”`/${getCurrentAppLayoutHandler() + ’/tables/detail/’+ item.id}`” tag=”tr” >
2. import following line inside script tag
import { getCurrentAppLayout } from “Helpers/helpers”;
and add the following method in methods object
getCurrentAppLayoutHandler() { return getCurrentAppLayout(this.$router); }
3. Create a new file inside table folder Detail.vue and put the following content <template>Id : {{data.id}}
Name : {{data.name}}
Calories : {{data.calories}}
Fat : {{data.fat}}
Carbs : {{data.carbs}}
Protein : {{data.protein}}
Sodium : {{data.sodium}}
Calcium : {{data.calcium}}
Iron : {{data.iron}}
</template><script> import api from “Api”;
export default { data() { return { items: [], data:”” }; }, mounted() { this.getTablesData(); }, methods: { getTablesData() { api .get(“vuely/tablesData.js”) .then(response => { this.loader = false; this.items = response.data; for (let i=0; i<this.items.length; i++){ if(this.items[i].id == this.$route.params.id) this.data = this.items[i] } }) .catch(error => { console.log(error); }); } }
}; </script>
4. Open router/default.js and add the following line
const Detail = () => import(‘Views/tables/Detail’);
and this inside export default object in children array
{ path: ’/default/tables/detail/:id’, component: Detail, meta: { requiresAuth: true, title: ‘Detail’, breadcrumb: [ { breadcrumbInactive: ‘Tables /’ }, { breadcrumbActive: ‘Detail’ } ] } },
NOTE :- This is the routing for only one layout i.e. default layout, If you are using other layouts also then you have to update the routing file of all the layouts accordingly.
Let us know if you have any info and queries at support@theironnetwork.org
Thanks and have a nice day ahead!
Hallo, i installed the Passport but when i logged in show it me this message: “Personal access client not found. Please create one.”
Hi,
Thanks for reaching out!
Did you follow the steps we provided in documentation for how to start with laravel-passport https://iron-network.gitbook.io/vuely/vuely-laravel-with-api-authentication/run-vuely-laravel-passport
In further, Here is the link of official documentation for how to create personal Access client https://laravel.com/docs/5.8/passport#creating-a-personal-access-client
Let us know if you have any info and queries at support@theironnetwork.org
Thanks and have a nice day ahead!
when i ( php artisan passport:install ) enter , it shows me:
libc++abi.dylib: terminating with uncaught exception of type std::runtime_error: collate_byname<char>::collate_byname failed to construct for C/de_DE.UTF-8/C/C/C/C Abort trap: 6
Hi,
Thanks for reaching out again!
Everything seems to be working fine on our side, we are not getting these types of issues. Can you provide us some information, like
a) Which package of vuely you are using like simple vuely, vuely-laravel, vuely-laravel-passport etc. b) What were the steps you followed to run the project. c) Specification of your machine - OS (version) - npm version - node version - php version - mysql version - vuejs version - vue-cli version - laravel version
If you are comfortable to send us your project, then please send us your project folder into zip file. By using this we will detect the issues and get back to you.
Let us know if you have any info and queries at support@theironnetwork.org
Thanks and have a nice day ahead!
Thanks for your answer.
a- i use (vuely-laravel-passport ) b – npm v6.4.1 , node v10.15.0 , php v7.3 , SQL Server, Vuejs 3, Laravel 6 c- on Mac OS Mojave
Hey Team, I’m trying to update to your new version, which support Vuetify 2.x
So, you’ve change the import of vuetify to “import vuetify from ’@/plugins/vuetify’”
I’ve updated my vue.config.js file to add the ” /\/node_modules\/vuetify\//,” but when compiling, I’ve still got the error “This dependency was not found:
- @/plugins/vuetify in ./src/main.js”
How to fix this ?
Actually, how would you recomand to do the update ?
Thank you
Hi,
Thanks for reaching out!
Did you create the plugins folder inside src folder ? Compiler does not find plugins folder that’s why its giving this error.
Note: After updating to the vuetify version 2, you will need to make changes in many files because many components name has been renamed. For more info you can follow this link https://github.com/vuetifyjs/vuetify/releases/tag/v2.0.0#user-content-upgrade-guide
Let us know if you have any info and queries at support@theironnetwork.org
Thanks and have a nice day ahead!
hello, the Datepicker component does not show every day, of the month. Is there any way to solve this problem?
https://drive.google.com/file/d/1uYdy6eAUD7uDhMaMlG-wZkfAup3eNAB2/viewHi,
Thanks for reaching out!
Please go to src/views/ui-elements/DatePicker.vue at below of the file inside export default in data method update the value of datepicker property as follows
datepicker: new Date().toISOString().substr(0, 10)
This will show the day, date and month as showing in this screenshot http://tinyurl.com/y5zutzje
Let us know if you have others queries at support@theironnetwork.org
Thanks and have a nice day ahead!
Hi, recently my company just bought this template and I’m the one in charge working on it. I wish to remove the built-in authentication from the template, do you mind show me the step to remove it? Also, i followed your step to removed auth0 and firebase as I believe it is one of the Authentication component, but when i serve the file, it show authservice module not found, should I remove the import AuthService from ”../../auth/AuthService”; const auth = new AuthService(); const { login, logout, authenticated, authNotifier } = auth; also ? Thanks
Hi,
Thanks for reaching out!
Yes, you have to remove this syntax as well.
You can follow our documentation, we’ve mentioned over there these steps:
https://iron-network.gitbook.io/vuely/faqs-frequently-asked-questions#how-to-remove-auth-0Let us know if you want any info at support@theironnetwork.org
Thanks and have a nice day ahead!
Hi, we have just completed the installation of the template in the vue-laravel 6.0.1 version. The project is located in a subdirectory under the webroot. When we open the “domain / subdirectory / public” page, only the red loading bar is shown and nothing else. No errors in the console.
Thanks
Hi,
Thanks for reaching out!
You can run the laravel project on laravel development server using “php artisn serve” command. If you want to run the project without command then you can follow this link https://stackoverflow.com/questions/28788285/how-to-run-laravel-without-artisan
Let us know if you have any info and queries at support@theironnetwork.org
Thanks and have a nice day ahead!
Hi, I replied by email. Can you please verify?
Hi Marco,
We didn’t get any email yet, can you please resend the same thanks!
The Laravel version ist just an empty Laravel installation. Do I oversee something or is that just a way to do marketing and tell “Laravel Version included”?
Hi,
Thanks for reaching out! As you have now given much information or screenshots, can’t really make out what you are referring to. It might be possible that your themeforest package was not fully downloaded, this may occur due to bad internet or other system issue. So we recommend that please download the vuely package from the themeforest once again.
Please see the following screenshots to make sure you have the similar package: https://www.screencast.com/t/xHnkxgr7 https://www.screencast.com/t/ibLFyDt2wfxWe cannot make out the exact issue you are facing as you have not provided much information. Incase you still face any issue, please explain in detail with screenshots at support@theironnetwork.org
Thanks and have a nice day
Hello,
I have a WebApp that I built with backpack. Is it easy to do the migration to Vuely ?
Thanks.
Hi,
Thanks for reaching out!
Unfortunately We do not have any predefined steps of migration, and also not tested as such with backpack. So you need to try it by yourself to migration to vuely.
Let us know if you need anything else at support@theironnetwork.org
Thanks and have a nice day!
Hello, I purchased the theme (c213c3f7-e283-4dc6-ae06-fa11f5dff94f) and I would like a refund for it. The product is not what I expected it to be. Thank you
Hi,
Is there a way to make item in sidebar menu just have a single item without arrow on the left title
Hi,
Thanks for reaching out!
1. To keep single item in sidebar menu (like we have provided inbox and chat menu) you need to go to src/store/modules/sidebar/data.js and search in the file for “modules” and you will find the object for single menu item. For example - { action: ‘zmdi-email’, title: ‘message.inbox’, active: false, items: null, path: ’/inbox’, label: ‘Old’ }
2. To remove the icon from left side, go to src/components/sidebar/Sidebar.vue and search for “v-else”, you will find a template tag with v-else directive below this there is a <v-list-group> component, you have to remove the prepend-icon=”arrow_right” prop. This will remove the icon.
Let us know if you have any info and queries at support@theironnetwork.org
Thanks and have a nice day ahead!
Starting development server… 89% module assets processing/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compilation.js:1994 throw new Error( ^
Error: Conflict: Multiple assets emit to the same filename fonts/themify.2c454669.eot at Compilation.emitAsset (/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compilation.js:1994:11) at Compilation.createModuleAssets (/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compilation.js:2075:11) at /Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compilation.js:1375:9 at AsyncSeriesHook.eval [as callAsync] (eval at create (/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:9:1) at AsyncSeriesHook.lazyCompileHook (/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/tapable/lib/Hook.js:154:20) at Compilation.seal (/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compilation.js:1323:27) at /Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compiler.js:675:18 at /Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compilation.js:1242:4 at AsyncSeriesHook.eval [as callAsync] (eval at create (/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:20:1) at AsyncSeriesHook.lazyCompileHook (/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/tapable/lib/Hook.js:154:20) at Compilation.finish (/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compilation.js:1234:28) at /Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compiler.js:672:17 at _done (eval at create (/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:9:1) at eval (eval at create (/Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:32:22) at /Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compilation.js:1166:12 at /Users/buiphongam/IdeaProjects/Vuely-main/vuely/node_modules/webpack/lib/Compilation.js:1078:9 npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! vuely@6.0.0 serve: `vue-cli-service serve` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the vuely@6.0.0 serve script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in: npm ERR! /Users/buiphongam/.npm/_logs/2019-09-13T06_14_20_382Z-debug.log
This is the error I got when trying to run in “vuely” folder. Please help me out.
Thanks
Hi guys, Thank you for the great piece of work here! Unfortunately, I get this result when I run npm install.
“audited 26638 packages in 8.4s found 8 vulnerabilities (1 low, 6 high, 1 critical)”
Running an npm audit or npm audit -f does not fix any of these issues. When I try “yarn install” (is my favorite pkg manager) it results in this:
“ERROR TypeError: Cannot read property ‘name’ of undefined TypeError: Cannot read property ‘name’ of undefined at /home/hinw/Dev/projects/vuely/node_modules/webpack/lib/performance/SizeLimitsPlugin.js:43:25 at Array.reduce (<anonymous>) at getEntrypointSize (/home/hinw/Dev/projects/vuely/node_modules/webpack/lib/performance/SizeLimitsPlugin.js:40:27) at /home/hinw/Dev/projects/vuely/node_modules/webpack/lib/performance/SizeLimitsPlugin.js:75:18 at _next0 (eval at create (/home/hinw/Dev/projects/vuely/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:10:1) at eval (eval at create (/home/hinw/Dev/projects/vuely/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:24:1) at callback (/home/hinw/Dev/projects/vuely/node_modules/copy-webpack-plugin/dist/index.js:126:17) at afterEmit (/home/hinw/Dev/projects/vuely/node_modules/copy-webpack-plugin/dist/index.js:220:13) at AsyncSeriesHook.eval [as callAsync] (eval at create (/home/hinw/Dev/projects/vuely/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:20:1) at AsyncSeriesHook.lazyCompileHook (/home/hinw/Dev/projects/vuely/node_modules/tapable/lib/Hook.js:154:20) at /home/hinw/Dev/projects/vuely/node_modules/webpack/lib/Compiler.js:482:27 at /home/hinw/Dev/projects/vuely/node_modules/neo-async/async.js:2818:7 at done (/home/hinw/Dev/projects/vuely/node_modules/neo-async/async.js:3522:9) at AsyncSeriesHook.eval [as callAsync] (eval at create (/home/hinw/Dev/projects/vuely/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:6:1) at /home/hinw/Dev/projects/vuely/node_modules/webpack/lib/Compiler.js:464:33 at /home/hinw/Dev/projects/vuely/node_modules/graceful-fs/graceful-fs.js:57:14 error Command failed with exit code 1.”
Any ideas about fixing the issues and problem with install by Yarn? Thanks in advance.
Cheers, Henrik
samme result when run “npm run build”: TypeError: Cannot read property ‘name’ of undefined at /home/hinw/Dev/projects/vuely/node_modules/webpack/lib/performance/SizeLimitsPlugin.js:43:25 at Array.reduce (<anonymous>) at getEntrypointSize (/home/hinw/Dev/projects/vuely/node_modules/webpack/lib/performance/SizeLimitsPlugin.js:40:27) at /home/hinw/Dev/projects/vuely/node_modules/webpack/lib/performance/SizeLimitsPlugin.js:75:18 at AsyncSeriesHook.eval [as callAsync] (eval at create (/home/hinw/Dev/projects/vuely/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:9:1) at AsyncSeriesHook.lazyCompileHook (/home/hinw/Dev/projects/vuely/node_modules/tapable/lib/Hook.js:154:20) at /home/hinw/Dev/projects/vuely/node_modules/webpack/lib/Compiler.js:482:27 at /home/hinw/Dev/projects/vuely/node_modules/neo-async/async.js:2818:7 at done (/home/hinw/Dev/projects/vuely/node_modules/neo-async/async.js:3522:9) at AsyncSeriesHook.eval [as callAsync] (eval at create (/home/hinw/Dev/projects/vuely/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:6:1) at /home/hinw/Dev/projects/vuely/node_modules/webpack/lib/Compiler.js:464:33 at /home/hinw/Dev/projects/vuely/node_modules/graceful-fs/graceful-fs.js:57:14 at FSReqCallback.oncomplete (fs.js:154:23) npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! vuely@6.0.0 build: `vue-cli-service build` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the vuely@6.0.0 build script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
ERROR TypeError: Cannot read property 'name' of undefined
npm ERR! A complete log of this run can be found in: npm ERR! /home/hinw/.npm/_logs/2019-09-13T04_38_45_360Z-debug.log
Hi,
Thanks for reaching out!
Please follow the steps below to install the theme. https://iron-network.gitbook.io/vuely/vuely-vuejs/installationWe have fixed the issues and updated the theme files at themeforest. So please check it out.
Let us know if you need anything else at support@theironnetwork.org
Thanks and have nice day!
Hi, date picker does not work.
http://vuely.theironnetwork.org/boxed/dashboard/agencysrc/components/Widgets/ToDoList.vue
“To Do List”
+ Add New -> Add To Do -> Schedule Date won’t open
Console: [Vuetify] The activator slot must be bound, try ’<template v-slot:activator=”{ on }”><v-btn v-on=”on”>’
Hi,
Thanks for reaching out!
Regarding your query, Please follow the steps to fix this.
1. Open the file src/components/widgets/ToDoList.vue and search for v-menu component.
2. In v-menu component you need to remove ‘lazy’ and ‘full-width’ props. Inside v-menu component update block of code for v-text-field component as follows
Before edit:
<v-text-field slot=”activator” :label=”$t(‘message.scheduleDate’)” v-model=”newToDo.date” prepend-icon=”event” readonly></v-text-field>
and replace with following:
<template v-slot:activator=”{ on }”> <v-text-field v-on=”on” :label=”$t(‘message.scheduleDate’)” v-model=”newToDo.date” prepend-icon=”event” readonly></v-text-field> </template>
Let us know if you need anything else at support@theironnetwork.org
Thanks and have nice day!
Hi,
I’ve tried a million ways to get this working with laravel but I’ve had zero success. Tried using laravel 6, laravel 5.7.* as per the composer.json and npm install in all the ways you can imagine. npm install works. npm run builds fine. Loading it up however, is another story.
I get this error everytime: Failed to mount component: template or render function not defined.
It looks like vue is breaking when trying to mount app. Entrypoint being main.js line 130.
If I build vuely standalone with npm install then it works.
However, working in an independent project doesn’t make for the best workflow.
Please advise?
Hi,
Thanks for reaching out!
Before we further dive in, Did you check our vuely laravel documentation steps. If not then please follow our documentation.
https://iron-network.gitbook.io/vuely/vuely-laravel/installationIf your problem still occurring then can you give us a little more context on the situation? Because we tested on our end and things are working perfectly. When did this issue begin happening? Has it been occurring consistently, or does it happen by any customization or by running command?
In further, As you are saying npm run builds caused the problem, you can’t use this command in vuely-laravel for production build. You need to run npm run prod (or you may replace the word prod with builds in package.json)
At last, would you mind sending me the project file zip folder that you are using right now at support@theironnetwork.org Using that, we can take a look in our system and see how we can get this fixed for you.
Thanks and have nice day!
Hello,
Thanks for such nice template.
I’m trying to use it in my Laravel project, but I can’t install it properly for `admin` route. I copied everything from the `resource` folder of the `laravel` demo, configured `webpack.mix.js` as in your demo as well as entry js file `app.js`. Everything is compile successfully, but I see a blank page in my route. Can you please guide how can I do it properly?
Thanks, Aleksey.
Hi,
Thanks for reaching out!
Please check our documentation for better understanding.
https://iron-network.gitbook.io/vuely/faqs-frequently-asked-questions#how-to-integrate-vuely-with-laravelLet us know if you need anything else at support@theironnetwork.org
Thanks and have a nice day!
Hi,
Thanks for this beautiful template. I really liked it. I have few question.
1) When are you going to releases update Vuely with Vuetify 2.0? 2) Is it possible to override some of the styles? For example I want to change height of Header and Site Logo but I can’t find in variables file?
Thanks and Regards, Rutvij
Hi,
Thanks for reaching out!
We appreciate your feedback. Regarding your queries:
1. We are already working on it. We will update it by probably in a week.
2. Yes, Easy customization is the main feature of Vuely. You can override the styles files to customize as well.
For header Height: Go to /src/assets/scss/custom/_header.scss and find this class “Vuely-toolbar” then under this find “v-toolbar__content” class and add height property with important like height: 80px !important By default, it takes 64px.
For Site Logo: Go to src/assets/scss/custom/_sidebar.scss and find “sidebar” class under this class check for “site-logo” and define height property. Like height: 80px;
Let us know if you have others queries and concerns at support@theironnetwork.org
Thanks and have a nice day!
Wow!!
You reply makes customization easier. Can you please add this details in documentation? It would be better in future. 
I’m really looking forward for Vuetify 2.0 update because it has more component and properly structured. Please update it as soon as possible. 
Thanks for an amazing theme.
hola cuando habra otra actualizacion del template podrian actualizar la version de vuetify 2???
Hi,
We are working on an update and should release it next month. Will keep you posted.
Thanks!
issue about v-menu .. i checked also your theme demo and same issue .. if you open the menu (example : like the one in your demo > dashboard > ecommerce .. in Devices Share card , up right corner there is a menu list with these options : Full screen , Reload , and close ) if you open it and scroll by mouse ot of the menu , menu still open and floating with scroll , is there any advice to fix . thank you
Please add the following css selectors in sidebar.scss file at src\assets\scss\custom
.app-default-layout .v-content__wrap{ height:100% !important; }
.application—wrap{ .v-toolbar—fixed{ z-index:9 !important; } }
.Vuely-sidebar{ z-index:99 !important }
It will fix the problem.
Let us know if you need anything else at support@theironnetwork.org.
Note: After adding the css, make sure you cross if it impacts any other section, just to be doubly sure.
Thanks and have a nice day!
vuetify 2.0 migration would indeed be awesome! 
Hello,
I have question regarding Vuetify version, what about Vuetify 2.0 integration? Do you have any plans for that or any kind of ETA?
Thank You, Rutvij