This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import router from '@system.router' | |
| import app from '@system.app' | |
| export default { | |
| data: { | |
| }, | |
| clickAction(){ | |
| router.replace({ | |
| uri: 'pages/detail/detail' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import router from '@system.router' | |
| export default { | |
| backToHome(){ | |
| router.replace({ | |
| uri: 'pages/index/index' | |
| }); | |
| }, | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <stack class="stack"> | |
| <image src='/common/background.png' class="background"></image> | |
| <div class="container" onswipe="touchMove"> | |
| <list class="showList"> | |
| <list-item class="showListItem" onclick="openPage('arrays/arrays')"> | |
| <text> | |
| Array | |
| </text> | |
| </list-item> | |
| <list-item class="showListItem" onclick="openPage('animator/animator')"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .stack { | |
| width: 454px; | |
| height: 454px; | |
| justify-content: center; | |
| } | |
| .background { | |
| width:454px; | |
| height:454px; | |
| } | |
| .container { |
NewerOlder