UNPKG
structure-chart
Version:
latest (0.0.9)
0.0.9
0.0.8
0.0.7
0.0.6
Structure Chart
structure-chart
/
src
/
main.ts
8 lines
(6 loc)
•
165 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ createApp }
from
'vue'
import
{ createPinia }
from
'pinia'
import
App
from
'./App.vue'
const
app =
createApp
(
App
) app.
use
(
createPinia
()) app.
mount
(
'#app'
)