Discussion on Vuely - Vuejs, Laravel, Angular 13, Expressjs Material Design Admin Template

Discussion on Vuely - Vuejs, Laravel, Angular 13, Expressjs Material Design Admin Template

Cart 1,647 sales
Well Documented

IronNetwork does not currently provide support for this item.

383 comments found.

I have a few questions:

1) If i run npm build dev, nothing happens. Checked all ports 2) i am using the laravel package. dont know if that makes any difference?

Hi,

Please refer to this link https://iron-network.gitbook.io/vuely/vuely-laravel to getting started with Vuely-laravel version.

Let us know if you need anything else.

Thanks!

hello, i want to ask, where is the location website title and icon location file, thanks before

Hi,

To change the location website title and icon you can change it on the index.html file. This file is located under the vuely -> public directory.

https://tinyurl.com/y7xkxpfo

Thanks! Let us know if you need anything else.

Is it vuejs only, or does it use jquery stuff as well?

Hi,

Vuely template is build with Vuejs, there is only one place where we have used jquery. Jquery is use in the template to build the jVector maps. If you don’t need these vector map, you can simply remove the jquery from the project dependencies.

Thanks!

Hi, How can I put horizontal layout as default?

Thanks

Hi,

Here are the step by step instructions to set horizontal layout as a default: Go to the src->router->default.js file and import horizontal layout as shown in screenshot: https://tinyurl.com/yb2v8pdy In same file, change component name as mentioned in screenshot: https://tinyurl.com/y88e4x4l After doing this, you will get horizontal layout as a default on the app. Let us know if it works for you.

Thanks!

That works! Thank you indeed!

What would be the best way to load an emails rest response to the inbox component?

Hi,

Here are the following instructions to load an emails rest response to the inbox component.

- Go to the src -> store -> modules -> mail directory and open index.js file.

1. import axios at the top of the file.

https://tinyurl.com/y7f7gd4t

2. Update the getEmails action with the axios get method as given in the screenshot.

https://tinyurl.com/y83s6lk5

3. You can also add the interval to check the new emails api response.

https://tinyurl.com/y8xbjk2v

4. Update the getEmails mutation as given in the screenshot

https://tinyurl.com/y9jokhbn

That’s It that you need to do. These above steps will loads the emails from the rest response to the inbox component.

Thanks! Let us know if it works for you.

Hi!

How can I change the green loading moving dot?

I’m sorry, can you help me with this issue?

Hi, I can’t understand your installation documentation. There are two install menu items, I tried install they but could not fix the errors in both. Must I install a fresh laravel 5.7 before?

Hi,

Yes you need to install a fresh laravel before. Follow the getting started menu as given in the documentation.

https://iron-network.gitbook.io/vuely/vuely-laravel/installation

Thanks!

Hi, congrats for your work ! I bought it today, just get into vuely-laravel, run composer install, npm install, .env conf etc.. php artisan serve and get it working perfectly. Perfectly when I navigate via vue router, when I refresh a page or go there manually I get 404 error, why? Thanks

Hi,

To resolve this issue you just need to add this route at the bottom of your routes/web.php file. Go to the vuely-laravel -> routes directory and open web.php file.

Route::get(‘{any}’, function () { return view(‘welcome’); })->where(‘any’,’.*’);

Thanks! Let us know if it works or not.

Works perfectly thanks

I want know the versions of the technologies. VueJS, Vuetify, ... Thanks!!

Hi,

We have used VueJs 2.5.17 and Vuetify 1.2.5 versions in the template.

Thanks!

Hi guy! Thanks for this product. Do you have this template Design in this store for .XD or .PSD?

Not at the moment.

This is an absolutely brilliant theme… Thx!

I got a few problems with setting up Auth0. I have build the seed project, and when i open my app i can’t logout… ( I’m unsure if i ever logged in )

Can you describe shortly what the step is, to get authentication working on the seed project?

Jesus guys… Now i installed the full version and tried to follow your guide in removing firebase… That didn’t work. I searched this forum and found a post 3 month old with the same problem… The solution from back then, did indeed fix the logout function, but now the app doesn’t need login… Could you guys plz stop developing the app and write you documentation??? Could you please provide me with a step by step guide to remove firebase and only use Auth0 ( or just update your documentation ) or even better, include the 3-4 files that need changes, with the changes already made…

Hi,

We have updated the documentation for you. Check the link to completely remove firebase from the app. https://iron-network.gitbook.io/vuely/faqs-frequently-asked-questions#how-i-can-disable-the-firebase

Let us know if you need anything else. Have a lovely day ahead. :)

Beautiful :D It works perfectly… Thanks, you are the best :D

Hi, I bought this for the Laravel feature you recently added. When trying to compile npm, i get the following errors:

WARNING  Compiled with 5 warnings                                                                                                                 22:12:30
warning  in ./resources/js/app.js

139:11-14 “export ‘default’ (imported as ‘App’) was not found in ’./App’

warning  in ./resources/js/App.js

139:11-14 “export ‘default’ (imported as ‘App’) was not found in ’./App’

warning  in ./resources/js/app.js

141:20-23 “export ‘default’ (imported as ‘App’) was not found in ’./App’

warning  in ./resources/js/App.js

141:20-23 “export ‘default’ (imported as ‘App’) was not found in ’./App’

warning  in ./resources/js/App.js

AND ALSO:

WARNING in ./resources/js/app.js 139:11-14 “export ‘default’ (imported as ‘App’) was not found in ’./App’ @ ./resources/js/app.js @ multi ./resources/js/app.js ./resources/sass/app.scss

WARNING in ./resources/js/App.js 139:11-14 “export ‘default’ (imported as ‘App’) was not found in ’./App’ @ ./resources/js/App.js @ ./resources/js/app.js @ multi ./resources/js/app.js ./resources/sass/app.scss

WARNING in ./resources/js/app.js 141:20-23 “export ‘default’ (imported as ‘App’) was not found in ’./App’ @ ./resources/js/app.js @ multi ./resources/js/app.js ./resources/sass/app.scss

WARNING in ./resources/js/App.js 141:20-23 “export ‘default’ (imported as ‘App’) was not found in ’./App’ @ ./resources/js/App.js @ ./resources/js/app.js @ multi ./resources/js/app.js ./resources/sass/app.scss

Hi,

It seems hidden files are missing such as .babelrc. So please make sure you have copied all the project files including the hidden files too.

Let us know if it works for you.

Thanks !

Yes, that was it thanks, it’s all working now. I have a final question: Why do you have so many .js files [0.js, 1.js, 2.js, 3.js, ..., 70.js]?? Can I remove these?

Hi,

These are the chunks files of the template, you can not remove these files. We have integrated dynamic import and lazy loading in the template which creates the chunks for each file which is used dynamic import statements. Chunks are more useful in the app to boost up your template loading speed. To get more information about the chunks you can check this link https://router.vuejs.org/guide/advanced/lazy-loading.html.

Thanks! Let us know if you need anything else.

Hello, When trying to launch the laravel version of vuely, i run npm run dev (i followed all previous steps), i reveive the following error:

WARNING in ./resources/js/app.js 139:11-14 “export ‘default’ (imported as ‘App’) was not found in ’./App’ @ ./resources/js/app.js @ multi ./resources/js/app.js ./resources/sass/app.scss

WARNING in ./resources/js/App.js 139:11-14 “export ‘default’ (imported as ‘App’) was not found in ’./App’ @ ./resources/js/App.js @ ./resources/js/app.js @ multi ./resources/js/app.js ./resources/sass/app.scss

WARNING in ./resources/js/app.js 141:20-23 “export ‘default’ (imported as ‘App’) was not found in ’./App’ @ ./resources/js/app.js @ multi ./resources/js/app.js ./resources/sass/app.scss

WARNING in ./resources/js/App.js 141:20-23 “export ‘default’ (imported as ‘App’) was not found in ’./App’ @ ./resources/js/App.js @ ./resources/js/app.js @ multi ./resources/js/app.js ./resources/sass/app.scss

WARNING in ./resources/js/App.js There are multiple modules with names that only differ in casing. This can lead to unexpected behavior when compiling on a filesystem with other case-semantic. Use equal casing. Compare these module identifiers:
  • /Applications/MAMP/htdocs/vue-laravel/node_modules/babel-loader/lib/index.js??ref—4-0!/Applications/MAMP/htdocs/vue-laravel/resources/js/App.js Used by 2 module(s), i. e. /Applications/MAMP/htdocs/vue-laravel/node_modules/babel-loader/lib/index.js??ref—4-0!/Applications/MAMP/htdocs/vue-laravel/resources/js/app.js
  • /Applications/MAMP/htdocs/vue-laravel/node_modules/babel-loader/lib/index.js??ref—4-0!/Applications/MAMP/htdocs/vue-laravel/resources/js/app.js Used by 1 module(s), i. e. multi /Applications/MAMP/htdocs/vue-laravel/resources/js/app.js /Applications/MAMP/htdocs/vue-laravel/resources/sass/app.scss @ ./resources/js/App.js @ ./resources/js/app.js @ multi ./resources/js/app.js ./resources/sass/app.scss

Please HELP

Hi,

It seems like the issue is in the app.js or App.vue file in the resource -> js directory. To resolve this issue go to the vuely-laravel -> resources -> js directory and open app.js file. And update the code that is given in the screenshot.

https://tinyurl.com/y8dcl22h

Thanks! Let us know if it work or not.

Thanks, that is working now! All the best I love your theme….

Next big step for me is to understand how Laravel integrates and learn it Any online tutoriel you can suggest?

I just bourght this template, mainly because you wrote that it is Laravel ready. Only thing i can find anywhere about laravel is 3 submenuitems in the documentation, telling me how to install laravel… Is this really all ???

Hi,

We have updated the documentation for you
https://iron-network.gitbook.io/vuely/vuely-laravel.

Feel free to send us an email at support@theironnetwork.org if you need any help to setup template or have any query.

Thanks!

Greetings,

I have recently purchased this theme. My developer asked about one feature named “Server side data tables”, is it included in the theme?

Please reply soon.

Thanks

Hi,

We already have data-table integrate in Vuely, check the documentation for more details https://vuetifyjs.com/en/components/data-tables#example-server

Thanks.

Hi I bought the VueJs material design template (c207b846-2a86-4b24-9157-a955b8073ac4). after downloading and setting it up, the product is not what I expected. Can you please issue a refund asap?

I’ve investigated and scanned the Support issues but wasn’t able to obtain an understanding of how imported (child) template names are being resolved when they don’t match the imported and declared names. Here’s a specific example that is repeated many times over in both Vuely and Adminify parent and child components.

File: Ecommerce.vue acting as a parent component that nests the LineChartShadow component as a child. (a) Here is the import assigns `LineChartShadow` to the imported child component <script> // charts component import LineChartShadow from “Components/Charts/LineChartShadow”;

(b) Here is the declaration of this child component so that it can be used inside the parent template components: { LineChartShadow,

(c) Now here is the reference/usage of the child component with the hyphenated/snake-case name of the imported child component <line-chart-shadow>

</line-chart-shadow>

Question: I don’t see and understand how <line-chart-shadow> is resolved and understood in this case. How does the parent template even resolve or compile correctly using <line-chart-shadow> without a definition or declarations by that name? Based on my limited exposure and use of Vue, I expected that the use of the child component must also match the imported and declaration name of `LineChartShadow`.

Hi,

Here is your questions answers along with their definitions and examples:-

a) We added the path resolve definition in the vue.config.js file which tells to the webpack to resolve components, views, helpers etc paths. You can find those definitions in the vue.config.js file under the project directory.

https://tinyurl.com/y6wzyfkf

b, c). LineChartShadow defined with the PascalCase, when defining a component with PascalCase, you can use either case when referencing its custom element. That means both <line-chart-shadow> and <LineChartShadow> are acceptable. Note, however, that only kebab-case names are valid directly in the DOM (i.e. non-string templates).

To get more information about how component is registered you can refer to the documentation https://vuejs.org/v2/guide/components-registration.html.

Thanks! Let us know if you need anything else.

Glad to see the updates coming. Thank you!

I’ve perused the changelog at https://iron-network.gitbook.io/vuely/changelog but all it says for the v.4.2.0 update is “Added Laravel’ version. For customers that have production sites built on Vuely, we need to be mindful about what and when to update with latest code. Is there a place to find specifically what’s added as a feature and what’s changed underneath so we can make more informed decisions on what and when to update our production code base?

Hi,

Sounds great that you are liking the updates, Feel free to suggest what more you would like to see in Vuely. Yes you can very well see what has been updated, we maintain everything over a git repository, you can send us an email with you purchase code and git user name on support@theironnetwork.org and we will add you. Let us know if you need anything else . Thanks!

I’ve split out the multi-part reply to be clear.

1. “Feel free to suggest what more you would like to see in Vuely.” (a) I think Vuely has some really good UX components. Feature wise, I’ll take more time to think of what else would enrichen it. One thing to consider is whether jQuery is really needed or whether it can be replaced by lighter-weight polyfill to reduce the JS manifest size. (b) From a changelog perspective, I think it would be helpful to highlight added, removed and changed features separately from technical details about what has changed underneath from a component or dependency perspective. Sometimes it’s obvious but often times it’s not for users that may be using just a subset of the themes.

2. “you can send us an email with you purchase code and git user name” (a) I purchase both Vuely and Adminify with extended support to leverage and extend UX features from both themes. Here’s my receipt with purchase codes.

Adminify – VueJS Bootstrap 4 Admin Template Regular License 12 months support (expires on 28 Aug 2019) Purchase code: 34b98fb2-bd5e-4147-9a02-696fbe44feda

Vuely : Vuejs 2 Material Design Admin Template Regular License 12 months support (expires on 28 Aug 2019) Purchase code: 68f91b13-3abf-41c5-ac19-71241b3d052e

(b) If by Git username, you mean my GitHub handle, then it’s `calirails` @ https://github.com/calirails

We have added you to the git repository, Thanks for feedback :)

Hi

I see from the sidebar code that material icons are being used in the sidebar like ‘dashboard’ for Dashboard. I also see class like zmdi-view-dashboard etc. But I can not figure out how to use another material icon like ‘collections’ using zmdi-collections or zmdi-view-collections doesn’t work.. I’m sure it’s smething simple I’m missing, please help me figure out how to both - use a different material icon in code - use a themify icon in code

Thanks

Hi,

Here are the step by step instructions to change the sidebar icons:

1.To use different material icon in sidebar:

- Go to data.js file under src/store/modules/sidebar directory.
- Open data.js file and replace the action value e.g. "zmdi-view-dashboard" with your desire material icon class name e.g. "zmdi-collection-video" as it given in the screenshot https://tinyurl.com/y8h8awu2
- You will get output like this https://tinyurl.com/ycodbrlv

2.To use themify icon in sidebar:

- Go to Sidebar.vue file under src/components/Sidebar directory.
- Open Sidebar.vue file and remove "zmdi" class as it given in the screenshot https://tinyurl.com/yb54sf57
- Go to data.js file under src/store/modules/sidebar directory.
- Open the data.js file and replace the action value e.g. "zmdi-view-dashboard" width your desire themify icon class name e.g. "ti-dashboard" as it given in the screenshot https://tinyurl.com/y8557xhy
 – You will get output like this https://tinyurl.com/y7y7g7pc

Let us know if you need anything else.

Thanks!

Thank you so much for the prompt reply :)

Let us know if you need anything else. You can reach us directly at support@theironnetwork.org . Thanks!

Hi, Is the Chinese language been included in this project? From your description of “In-Built Multi Language Support…”

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey