mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
docs(demos): outline list examples
This commit is contained in:
@ -1,10 +1,55 @@
|
||||
import {Page} from 'ionic/ionic';
|
||||
|
||||
@Page({
|
||||
templateUrl: 'lists/lists.html',
|
||||
templateUrl: 'lists/basic-lists.html',
|
||||
})
|
||||
export class ListsPage {
|
||||
export class BasicListsPage {
|
||||
constructor() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@Page({
|
||||
templateUrl: 'lists/inset-lists.html',
|
||||
})
|
||||
export class InsetListsPage {
|
||||
constructor() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@Page({
|
||||
templateUrl: 'lists/no-dividers.html',
|
||||
})
|
||||
export class NoDividersPage {
|
||||
constructor() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@Page({
|
||||
templateUrl: 'lists/list-headers.html',
|
||||
})
|
||||
export class ListHeadersPage {
|
||||
constructor() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@Page({
|
||||
templateUrl: 'lists/icon-lists.html',
|
||||
})
|
||||
export class IconListsPage {
|
||||
constructor() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@Page({
|
||||
templateUrl: 'lists/avatar-lists.html',
|
||||
})
|
||||
export class AvatarListsPage {
|
||||
constructor() {
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user