Vue的安装与初步使用

Vue的安装与初步使用

Vue.js 是一套构建用户界面的渐进式框架。
Vue 只关注视图层, 采用自底向上增量开发的设计。
Vue 的目标是通过尽可能简单的 API 实现响应的数据绑定和组合的视图组件。

安装Node.JS

Node.js 就是运行在服务端的 JavaScript,是基于Chrome JavaScript 运行时建立的一个平台。同时Node.js也是一个事件驱动I/O服务端JavaScript环境,基于Google的V8引擎,V8引擎执行Javascript的速度非常快,性能非常好。能够使前后端完全分离。(后端可以为Python/Java;前端则为Node.js)在http://nodejs.cn/download/选择64位安装包安装。
安装Node.JS

安装并运行VUE

依次在cmd输入
npm install vue (安装VUE)
(进入node文件夹继续输入)
npm install vite (安装Vite 包)
npm init vite-app hellovue (创建工程)
npm run dev (运行 hellovue)
cd hellovue (进入工程文件夹)
npm install (安装npm包)
npm run dev (用npm命令运行)
接下来会出现几个网址,选择本地方式打开即可
安装并运行VUE
打开目录下的src文件夹,可以找到APP.vue文件,编辑其中内容,可以实现网页内容的自定义。比如更改HelloWorld msg,可以实现文字内容改变。
更改内容更改后的主页

读取json文件并输出表格

首先需要安装axios包
npm install axios --save
新建VITEJS-APP工程
将json数据alphabet.json放入src中
修改APP.vue内容

<template>
    <img alt="Vue logo" src="./assets/logo.png" />
    <HelloWorld msg="Hello" />
    <test-axios />
</template>

<script setup>
	import HelloWorld from "./components/HelloWorld.vue";
	import TestAxios from "./components/TestAxios.vue";
</script>

新建TestAxios.vue文件

<template>
  <div>
    <p v-for="(char, i) in alphabet" :key="i">
      <span>{{ char.letter }}</span>
      <span>{{ char.frequency }}</span>
    </p>
  </div>
</template>

<script>
import axios from "axios";
export default {
  data() {
    return {
      alphabet: [],
    };
  },
  mounted() {
    axios.get("/alphabet.json").then((res) => {
      this.alphabet = res.data;
      console.log(this.alphabet);
    });
  },
};
</script>

新建BarChart.vue文件

<template>
  <h2>📊 咱是直方图</h2>
  <div id="bar-chart-container"></div>
</template>

<script>
import { defineComponent } from "vue";
import axios from "axios";
import * as d3 from "d3";

export default defineComponent({
  data() {
    return {
      color: "steelblue",
      margin: { top: 30, right: 0, bottom: 30, left: 40 },
    };
  },
  /**
   * 在挂载后即开始执行
   */
  mounted() {
    axios.get("./alphabet.json").then((res) => {
      const barChartData = Object.assign(this.formatData(res.data), {
        format: "%",
        y: "↑ Frequency",
      });
      this.drawBarChart(barChartData);
    });
  },

  methods: {
    /**
     * 格式化数据
     */
    formatData(data) {
      return data
        .map(({ letter, frequency }) => {
          return { name: letter, value: frequency };
        })
        .sort((a, b) => d3.descending(a.value, b.value));
    },

    /**
     * 绘制直方图
     */
    drawBarChart(data) {
      const margin = this.margin;

      const width = 800;
      const height = 500;

      // 初始化 SVG 元素
      const svg = d3
        .select("#bar-chart-container")
        .append("svg")
        .attr("class", "bar-chart")
        .attr("viewBox", `0 0 ${width} ${height}`)
        .attr("width", width)
        .attr("height", height)
        .append("g");

      // https://observablehq.com/@d3/d3-scaleband
      // x 轴的缩放比例尺
      const x = d3
        .scaleBand()
        .domain(d3.range(data.length))
        .range([margin.left, width - margin.right])
        .padding(0.1);

      // y 轴的缩放比例尺
      const y = d3
        .scaleLinear()
        .domain([0, d3.max(data, (d) => d.value)])
        .nice()
        .range([height - margin.bottom, margin.top]);

      // x 坐标轴
      // tickSizeOuter(0) 移除 0 处初始的标记
      // tickFormat https://github.com/d3/d3-scale/blob/master/README.md#tickFormat
      const xAxis = (g) =>
        g.attr("transform", `translate(0,${height - margin.bottom})`).call(
          d3
            .axisBottom(x)
            .tickFormat((i) => data[i].name)
            .tickSizeOuter(0)
        );

      // y 坐标轴
      const yAxis = (g) =>
        g
          .attr("transform", `translate(${margin.left},0)`)
          .call(d3.axisLeft(y).ticks(null, data.format))
          // 移除区域间的竖线
          .call((g) => g.select(".domain").remove())
          .call((g) =>
            g
              .append("text")
              .attr("x", -margin.left)
              .attr("y", 10)
              .attr("fill", "currentColor")
              .attr("text-anchor", "start")
              .text(data.y)
          );

      svg
        .append("g")
        .attr("fill", this.color)
        .selectAll("rect")
        .data(data)
        .join("rect")
        .attr("x", (d, i) => x(i))
        .attr("y", (d) => y(d.value))
        .attr("height", (d) => y(0) - y(d.value))
        .attr("width", x.bandwidth());

      // 绘制到 SVG
      svg.append("g").call(xAxis);
      svg.append("g").call(yAxis);
    },
  },
});
</script>

最终src文件夹以及网页页面如下
文件夹内部直方图

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值