Skip to content

Commit 5699dae

Browse files
committed
feat: add step component
1 parent 074613e commit 5699dae

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

packages/nStep/src/index.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { defineComponent } from '@vue/composition-api';
2+
import './index.scss';
3+
4+
export default defineComponent({
5+
name: 'NStep',
6+
setup(props:any, {slots}) {
7+
return () => (
8+
<div class="n-step">
9+
10+
</div>
11+
)
12+
}
13+
})

0 commit comments

Comments
 (0)