Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
app /
pages /
Delete
Unzip
Name
Size
Permission
Date
Action
404.html
472
B
-rw-r--r--
2018-03-06 12:25
about.html
1.08
KB
-rw-r--r--
2018-03-06 12:25
catalog.html
741
B
-rw-r--r--
2018-03-06 12:25
cenews.php
1.31
KB
-rw-r--r--
2020-08-13 09:59
latestnews.php
1.18
KB
-rw-r--r--
2020-08-13 10:50
members.php
1.43
KB
-rw-r--r--
2018-03-06 13:22
page-loader-component.html
3.97
KB
-rw-r--r--
2018-03-06 12:25
page-loader-template7.html
1.55
KB
-rw-r--r--
2018-03-06 12:25
portal.php
880
B
-rw-r--r--
2018-03-06 13:16
practicenotes.php
68.64
KB
-rw-r--r--
2019-06-26 08:24
product.html
927
B
-rw-r--r--
2018-03-06 12:25
publications.html
1.74
KB
-rw-r--r--
2019-11-29 07:18
publications.php
2.2
KB
-rw-r--r--
2020-08-13 09:59
request-and-load.html
762
B
-rw-r--r--
2018-03-06 12:25
sce.php
1.82
KB
-rw-r--r--
2019-12-04 04:24
search.php
5.88
KB
-rw-r--r--
2020-01-24 10:27
searchresults.php
30
B
-rw-r--r--
2018-01-24 10:56
ypf.php
1.25
KB
-rw-r--r--
2019-12-04 04:24
Save
Rename
<template> <div class="page"> <div class="navbar"> <div class="navbar-inner sliding"> <div class="left"> <a href="#" class="link back"> <i class="icon icon-back"></i> <span class="ios-only">Back</span> </a> </div> <div class="title">Component Page</div> </div> </div> <div class="page-content"> <div class="block block-strong"> <p>Component page is alos compiled with Template7, but it has much more functionality. In addition to Template7 page it has lifecycle hooks, events handling and data managment.</p> <p>It is useful to use Component page when you need page-specific logic.</p> </div> <div class="block-title">Events Handling</div> <div class="block block-strong"> <a href="#" class="button button-raised" @click="openAlert">Open Alert</a> </div> <div class="block-title">Page Component Data</div> <div class="block block-strong"> <p>Hello! My name is {{name}}. I am {{age}} years old.</p> <p>I like to play:</p> <ul> {{#each like}} <li>{{this}}</li> {{/each}} </ul> </div> <div class="block-title">Extended Context</div> <div class="block block-strong"> <p>Component page context as Template7 page context is also extended with some additional variables.</p> <h4>$route</h4> <p>Contains properties of the current route:</p> <ul style="padding-left:25px"> <li><b>$route.url</b>: {{$route.url}}</li> <li><b>$route.path</b>: {{$route.path}}</li> <li><b>$route.params</b>: {{js 'return JSON.stringify(this.$route.params)'}}</li> <li><b>$route.hash</b>: {{$route.hash}}</li> <li><b>$route.query</b>: {{js 'return JSON.stringify(this.$route.query)'}}</li> </ul> <h4>$root</h4> <p>Root data & methods:</p> <ul style="padding-left:25px"> <li><b>$root.user.firstName</b>: {{$root.user.firstName}}</li> <li><b>$root.user.lastName</b>: {{$root.user.lastName}}</li> <li><a @click="$root.helloWorld()">$root.helloWorld()</a></li> </ul> <h4>$theme</h4> <p>Currently active theme:</p> <ul style="padding-left:25px"> <li><b>$theme.ios</b>: {{$theme.ios}}</li> <li><b>$theme.md</b>: {{$theme.md}}</li> </ul> </div> </div> </div> </template> <style> p { margin: 10px 0; } </style> <script> return { // Lifecycle Hooks beforeCreate() { console.log('componentBeforeCreate', this) }, created() { console.log('componentCreated', this) }, beforeMount() { console.log('componentBeforeMount', this) }, mounted() { console.log('componentMounted', this); }, beforeDestroy() { console.log('componentBeforeDestroy', this); }, destroyed() { console.log('componentDestroyed', this); }, // Component Data data: function () { // Must return an object return { name: 'Jimmy', age: 25, like: ['Tennis', 'Chess', 'Football'], } }, // Component Methods methods: { openAlert: function () { var self = this; self.$app.dialog.alert('Hello World'); }, }, // Page Events on: { pageMounted: function(e, page) { console.log('pageMounted', page); }, pageInit: function(e, page) { console.log('pageInit', page); }, pageBeforeIn: function(e, page) { console.log('pageBeforeIn', page); }, pageAfterIn: function(e, page) { console.log('pageAfterIn', page); }, pageBeforeOut: function(e, page) { console.log('pageBeforeOut', page); }, pageAfterOut: function(e, page) { console.log('pageAfterOut', page); }, pageBeforeRemove: function(e, page) { console.log('pageBeforeRemove', page); }, } } </script>