Hastic standalone https://hastic.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
412 B

<template>
<div class="hello">
<div>
Login: <input type="text" />
Password: <input type="password" />
<input type="submit" />
</div>
</div>
</template>
<script lang="ts">
import { Options, Vue } from 'vue-class-component';
@Options({
props: {
msg: String
}
})
export default class Login extends Vue {
msg!: string
}
</script>
<style scoped lang="scss">
</style>