Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 971 Bytes

readme.md

File metadata and controls

39 lines (29 loc) · 971 Bytes

Unofficial
The repository code is an unofficial version and cannot be used to generate environments

Assets

Deployment

Advice

Separation of focus writing

<!-- OK -->
<style lang="scss">
	/* ... */
</style>

<!-- OK -->
<!-- referenced only when the component is loaded -->
<style lang="scss">
	@import "xxx.scss";
</style>

<!-- Discretion -->
<!-- 
    it will be compiled into one file public/css/app.css and u can import that file in head section of your template
    
    <link href="/css/app.css" rel="stylesheet">
 -->
<style lang="scss" src="xxx.scss"></style>