Packages

Potionx project generator. Provides a `mix potionx.new` task to bootstrap a new Elixir application with Phoenix, Absinthe, Pow and Vue dependencies.

Current section

Files

Jump to
potionx_new templates potionx frontend admin src App.tsx
Raw

templates/potionx/frontend/admin/src/App.tsx

import { defineComponent } from 'vue'
export default defineComponent({
name: 'App',
components: {},
setup () {
return () => {
return <div>
<router-view></router-view>
</div>
}
}
})