mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
92 lines
1.1 KiB
TypeScript
92 lines
1.1 KiB
TypeScript
import {Page} from 'ionic/ionic';
|
|
|
|
@Page({
|
|
templateUrl: 'buttons/buttons.html',
|
|
})
|
|
export class ButtonsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'buttons/block.html',
|
|
})
|
|
export class BlockButtonsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'buttons/clear.html',
|
|
})
|
|
export class ClearButtonsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'buttons/full.html',
|
|
})
|
|
export class FullButtonsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'buttons/outline.html',
|
|
})
|
|
export class OutlineButtonsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'buttons/round.html',
|
|
})
|
|
export class RoundButtonsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'buttons/fab.html',
|
|
})
|
|
export class FabPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'buttons/sizes.html',
|
|
})
|
|
export class ButtonSizesPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'buttons/icons.html',
|
|
})
|
|
export class IconButtonsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'buttons/components.html',
|
|
})
|
|
export class ButtonsInComponentsPage {
|
|
constructor() {
|
|
|
|
}
|
|
}
|