Skip to content

esonoma/pet

Repository files navigation

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>