import { QuarkElement, customElement, state, createRef, } from "quarkc" import style from "./index.less?inline" @customElement({ tag: "app-home", style }) class Home extends QuarkElement { // https://quark.hellobike.com/#/zh-CN/docs/properties @state() msg = 'Welcome to Your Quark App' // https://quark.hellobike.com/#/zh-CN/docs/lifecycle // componentDidMount() {} // shouldComponentUpdate() {} // componentDidUpdate() {} // componentWillUnmount() {} render() { return ( <>
quark logo

{ this.msg }

For a guide and recipes on how to configure / customize this project,
check out the Quarkc documentation.

Route

) } }