smartchart/templates/diy/common.html
JohnYan 3eb4590336 v3.9.9.18
修复vue bug, 增加elementUI支持, 优化DataV开发体验
2021-10-25 23:05:12 +08:00

21 lines
368 B
HTML

{% extends "echart/base.html" %}
{% block head %}
<style>
.smt {
border-style: dotted;
border-width: 0.1rem;
}
</style>
{% endblock %}
{% block body %}
<div class="container_fluid">
<div class="row_fluid" id="vue_app">
{% for div in div_list %}
{{div|safe}}
{% endfor %}
</div>
</div>
{% endblock %}
{% block javascript %}{% endblock %}