Laravel 8.x - 无法在 laravel 组件文件中添加按钮

Laravel 8.x - Not able to add a button in laravel component file

我正在学习 Laravel blade 。我已经安装了 breeze 并且正在尝试在 dashboard.blade.php 中添加一个按钮。

<x-app-layout>
    <x-slot name="header">
        <h2 class="font-semibold text-xl text-gray-800 leading-tight">
            {{ __('Dashboard') }}
        </h2>
    </x-slot>

    <div class="py-12">
        <div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
            <div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
                <div class="p-6 bg-white border-b border-gray-200">
                    Hello, You're logged in!
                    <br><br><button type="button" class="btn btn-danger">Danger</button>
                </div>
            </div>
        </div>
    </div>
</x-app-layout>

显示的按钮没有任何形状或轮廓。你能告诉我我在这里做错了什么吗?

查看您的标记,有一些与 Tailwind 相关的内容 类,因此我假设您使用的是 Tailwindcss。

在这种情况下,您正尝试在 Tailwind CSS 设置中使用 Bootstrap 类。

为了实现类似于危险按钮的按钮,您可以这样做:

<button 
    type="button" 
    class="rounded-md bg-red-500 text-white focus:ring-red-600 px-4 py-2 text-sm">Danger</button>

https://tailwindcss.com/docs/installation