Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Last active September 26, 2020 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/b26edb2719646cd7c8172d61cac1a538 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/b26edb2719646cd7c8172d61cac1a538 to your computer and use it in GitHub Desktop.
<inertia-link
class="button text-white bg-theme-1 shadow-md mr-2"
:href="route('posts.create')"
>
{{ __("create_post") }}
</inertia-link>
<!-- O -->
<button
class="button text-white bg-theme-1 shadow-md mr-2"
@click="create"
>
Crear Post
</inertia-link>
<script>
export default {
name: "PostsList",
methods: {
create() {
this.$inertia.visit(this.route("posts.create"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment