This is an UI framework based on Vue. The inspiration comes from Sakura 🌸. I haven't finished it completely, so dont't use it in the production development. Hope u will like it~❤️ If u like it, please give me a ⭐. I wrote an article in juejin.im to record some details in building this framework.:point_right: here . U can give me some feedback. 😄
👉 https://firenzia.github.io/sakura-ui/
- Install package [heian-sakura-ui]
npm i -D heian-sakura-ui
- Get Started
<template> <div id="app"> <s-button type="primary">点击报名</s-button> </div> </template> <script> import {Button} from 'heian-sakura-ui' import 'heian-sakura-ui/dist/sakura.css' export default { name: 'app', components: { 's-button':Button } } </script>