legion-vue-core
Version:
38 lines (29 loc) • 601 B
Markdown
Creat file `main.ts` and copy this code
```js
import { createApp } from 'vue'
import App from './app.vue'
import './style.scss'
createApp(App).mount('#app')
```
create file `app.vue` and import in `main.ts` and then you do anything in app component. And then `yarn dev` or `npm run dev`
```js
// for run R&D
yarn dev
// or
npm run dev
// for run unit test
yarn test
// or
npm run test
// for run storybook
yarn storybook
// or
npm run storybook
```
```js
// console.log(button.classes()) for see properti class
```