Skip to content

Instantly share code, notes, and snippets.

@Artur-
Last active August 29, 2015 14:12
Show Gist options
  • Save Artur-/27aca96ee4e481bacebd to your computer and use it in GitHub Desktop.
Save Artur-/27aca96ee4e481bacebd to your computer and use it in GitHub Desktop.
<v-panel>
<v-vertical-layout margin spacing>
<v-label><h3>Sign In</h3></v-label>
<v-horizontal-layout spacing>
<v-text-field caption="Email" />
<v-password-field caption="Password" />
</v-horizontal-layout>
<v-button style-name="primary">Sign In</v-button>
</v-vertical-layout>
</v-panel>
{
"component":"v-panel",
"children":[
{
"component":"v-vertical-layout",
"margin":true,
"spacing":true,
"children":[
{
"component":"v-label",
"value":"<h3>Sign In</h3>"
},
{
"component":"v-horizontal-layout",
"spacing":true,
"children":[
{
"component":"v-text-field",
"caption":"Email"
},
{
"component":"v-password-field",
"caption":"Password"
}
]
},
{
"component":"v-button",
"style-name":"primary",
"value":"Sign In"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment