-
Updated
Nov 28, 2020 - Vue
admin
Here are 2,014 public repositories matching this topic...
-
Updated
Nov 27, 2020 - TypeScript
-
Updated
Nov 25, 2020 - TypeScript
-
Updated
Oct 25, 2020 - JavaScript
-
Updated
Nov 25, 2020 - JavaScript
-
Updated
Nov 23, 2020 - CSS
-
Updated
Nov 28, 2020 - Vue
在nginx环境下, 网站上的图形或字体加载不了, 显示为方框. 配置问题, fontawesome图标字体库组件在服务器上显示不出来图标的问题.
先看看路径是否加载失败. .ttf 和.woff 文件, 确认路径正确
找到 nginx的配置文件 ,ps -ef | grep nginx
文件名 default_*.conf
加上
location ~* \.(eot|otf|ttf|woff|svg)$ {
root /home/web/waimai/; #项目路径, 必须加上, 除非你只有一个项目,默认80端口.
add_header Access-Control-Allow-Origin *;
}
-
Updated
Nov 29, 2020 - JavaScript
-
Updated
Jun 1, 2020 - JavaScript
-
Updated
Apr 29, 2020 - Vue
-
Updated
Nov 27, 2020 - Java
-
Updated
May 10, 2020 - JavaScript
-
Updated
Nov 29, 2020 - Go
-
Updated
Nov 29, 2020 - Java
-
Updated
Nov 20, 2020 - Vue
Original question:
I have my own rest crud api and I would like to use only frontend part of admin-bro.
Does admin-bro support such scenario?
Proposed solution: MVP
- document how to wrap existing API by BaseResource
End Solution
- extend admin-bro core that, instead of asking own API, asks external API
- this could be a method in Action interface:
externalAPI
(but w
-
Updated
Nov 26, 2020 - JavaScript
-
Updated
Sep 11, 2020 - Python
When you open page UI Elements -> Cards i see TABS are not showing content until you click on other and back on first, same for pills.
Possible fix : ( worked for me )
<script type="text/javascript"> $(document).ready(function(){ $('.nav-item').tab('show'); $('.nav-tabs li a:first').trigger('click'); }); </script>
Improve this page
Add a description, image, and links to the admin topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the admin topic, visit your repo's landing page and select "manage topics."
What you were expecting:
I am using the
List
component like the following.