-
Notifications
You must be signed in to change notification settings - Fork 5
vuejs
Yee Siang edited this page Nov 22, 2020
·
3 revisions
Backend used Vuejs1 while frontend & cpanel used Vuejs2 due to MaGIC header.
Here are few differences when using Vuejs1 vs Vuejs2
Vuejs1 method:
<input type="hidden" v-model="portfolioId" value="<?php echo $model->id ?>" />
Vuejs2 method:
<input type="hidden" name="portfolioId" :value="portfolioId = '<?php echo $model->id ?>'" />
Vuejs1 method:
ready: function(){this.fetchData(0);},
Vuejs2 method:
mounted: function(){this.fetchData(0);},
-
- Coding Standard
- Naming Convention
- The Core Architecture
- Configuration
- Database
- Extending Model with Meta
- Components
- Layouts & Views System
- UI Components
- Common Building Block
- Master Data
- Default Features
- Default Modules
- Cron
- Notify
- Neo4J Database
- Multi Domains
- Multilingual (i18n)
- DevOps
- Open Source Project Webpage
- Access Control Limit
- Migration
-
Others