From 851503edc6e279326611ed4165114bbccec17a0f Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sat, 17 Aug 2019 13:37:14 +0800 Subject: [PATCH] [F] Fix "Property is not defined on the instance but referenced during render." --- src/components/login/login.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/login/login.ts b/src/components/login/login.ts index f7cd14f..1e3c6bc 100644 --- a/src/components/login/login.ts +++ b/src/components/login/login.ts @@ -5,4 +5,6 @@ import {Component, Vue} from 'vue-property-decorator'; }) export default class Login extends Vue { + public username: any = ''; + public password: any = ''; }