Last active
January 28, 2020 15:58
-
-
Save nolimits4web/0b5e398226cbdb873fdc93601a855ba8 to your computer and use it in GitHub Desktop.
Framework7 Svelte
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
| <App { params }> | |
| <View main url="/" /> | |
| </App> | |
| <script> | |
| import { App, View } from 'framework7-svelte'; | |
| import Home from './pages/home.svelte'; | |
| const params = { | |
| // ... | |
| routes: [ | |
| { | |
| path: '/', | |
| component: Home, | |
| }, | |
| // ... | |
| ] | |
| } | |
| </script> |
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
| <Page> | |
| <Navbar large title="My App"/> | |
| <Block strong> | |
| <p>Welcome to my app!</p> | |
| <Button fill large>Button</Button> | |
| </Block> | |
| <List> | |
| <ListItem title="Item 1" /> | |
| <ListItem title="Item 2" /> | |
| </List> | |
| </Page> | |
| <script> | |
| import { Page, Navbar, Block, Button, List, ListItem } from 'framework7-svelte'; | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment