当前位置: 首页 > news >正文

免费做数据采集的网站什么是seo关键词优化

免费做数据采集的网站,什么是seo关键词优化,莱芜金点子信息港招聘信息,管理咨询系统1.先安装node.js和vite,具体参考: 2.管理员身份运行cmd,跳转到node安装目录: 输入: npm create vitelatest 输入项目名称,选择vue和JavaScript 2.VisualStudioCode打开(可能需要管理员权限)创建的文件夹,点…

1.先安装node.js和vite,具体参考:

2.管理员身份运行cmd,跳转到node安装目录:

输入: npm create vite@latest

输入项目名称,选择vue和JavaScript

2.VisualStudioCode打开(可能需要管理员权限)创建的文件夹,点击左侧选中

Crtrl加~打开终端

输入:npm install vue-router  配置路由

输入:  npm install axios  安装axios

输入:npm install element-plus --save  安装element-plus

3.配置文件

src目录下创建router、util、api、views文件夹。

        api文件夹下创建index.js文件,放入代码:

import http from '../util/http.js';//get:(url)=>{http({url:url,method:'get'})}
//{}代表方法体,没有return就没有返回值了
//get:(url)=>{http(return {url:url,method:'get'})}
export const API={//get方法,传入url参数get:(url)=>http({url:url,method:'get'})
};
//抛出一个实例
export default API;

        router文件夹下创建index.js文件,放入代码:

import {createRouter,createWebHashHistory} from 'vue-router';const router=createRouter({history:createWebHashHistory(),routes:[{path:'/easya',component:()=>import("../views/easya.vue")}]}
);
export default router;

        util文件夹下创建文件http.js,放入代码:

import axios from 'axios';export default function (options) {//配置每次发送请求都从sessionStorage中获取名字叫token的数据,//添加到请求头部的Authorization属性中//Object.assign用于合并对象的数据options.headers = Object.assign({ Authorization: sessionStorage.getItem('token') },options.headers || {});//axios()   返回一个promise对象,用于异步请求//options是一个对象,其中包含了许多用于配置请求的参数,//例如请求的url、请求方法(GET、POST等)、请求头等return axios(options).then(({ status, data, statusText }) => {//该函数在请求成功并返回数据时被调用//status:HTTP状态码,例如200表示请求成功。//data:服务器返回的数据。// statusText:HTTP状态文本,例如"OK"表示请求成功。if (status == 200) {return data;} else {throw new Error(statusText);}}).catch(e=>{return Promise.reject(e);//return Promise.reject(e.message);});
}

        views文件夹下创建文件easya.vue,放入代码做测试:

<script setup>
import {ref,onMounted} from 'vue';
import easyapi from '../api';</script><template><h1>hello vue</h1></template>
<style>
</style>

src下的main.js代码覆盖为:

import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import App from './App.vue'
import router from './router'createApp(App).use(router).use(ElementPlus).mount('#app')

src下的App.vue代码覆盖为:

<script setup></script><template><!--设置页面占位符--><router-view></router-view>
</template>

运行测试:输入 npm run dev

访问本地路径:http://localhost:5173/easya 访问

终端Ctrl+c退出


文章转载自:
http://dinncoguaiacol.tpps.cn
http://dinncogoulard.tpps.cn
http://dinncotong.tpps.cn
http://dinncowiry.tpps.cn
http://dinncokingdom.tpps.cn
http://dinncocaestus.tpps.cn
http://dinncoretrochoir.tpps.cn
http://dinncoshay.tpps.cn
http://dinncocollectorate.tpps.cn
http://dinncodolmen.tpps.cn
http://dinncocosmo.tpps.cn
http://dinncostuffy.tpps.cn
http://dinncoredemonstrate.tpps.cn
http://dinncoubangi.tpps.cn
http://dinncofaq.tpps.cn
http://dinncomangle.tpps.cn
http://dinncoheadlong.tpps.cn
http://dinnconeoplasty.tpps.cn
http://dinncoviscountship.tpps.cn
http://dinncoglaciological.tpps.cn
http://dinncopogamoggan.tpps.cn
http://dinncoinoperable.tpps.cn
http://dinncopearly.tpps.cn
http://dinncodruid.tpps.cn
http://dinncofederalize.tpps.cn
http://dinncopessimal.tpps.cn
http://dinncoploughshare.tpps.cn
http://dinncodicky.tpps.cn
http://dinncofabricius.tpps.cn
http://dinncoectopic.tpps.cn
http://dinncowalleye.tpps.cn
http://dinncotepal.tpps.cn
http://dinncogeocarpy.tpps.cn
http://dinncovistula.tpps.cn
http://dinncophotopolymer.tpps.cn
http://dinncoreave.tpps.cn
http://dinncoacariasis.tpps.cn
http://dinncosolano.tpps.cn
http://dinncodigitorium.tpps.cn
http://dinncofingerpost.tpps.cn
http://dinncograssplot.tpps.cn
http://dinnconeuromast.tpps.cn
http://dinncotrichloronitromethane.tpps.cn
http://dinncointegrative.tpps.cn
http://dinncoroadability.tpps.cn
http://dinncolenis.tpps.cn
http://dinncointerdine.tpps.cn
http://dinncoatrabiliar.tpps.cn
http://dinncoposttranscriptional.tpps.cn
http://dinncotournois.tpps.cn
http://dinncokellogg.tpps.cn
http://dinncodomineering.tpps.cn
http://dinncomaulers.tpps.cn
http://dinncoworksheet.tpps.cn
http://dinncoscourings.tpps.cn
http://dinncoincremate.tpps.cn
http://dinncoavirulent.tpps.cn
http://dinncotedium.tpps.cn
http://dinncojonson.tpps.cn
http://dinncoacrocephalia.tpps.cn
http://dinncomanslaying.tpps.cn
http://dinncoyannigan.tpps.cn
http://dinncojeremiad.tpps.cn
http://dinncowordy.tpps.cn
http://dinncocinerary.tpps.cn
http://dinncouniat.tpps.cn
http://dinncopolyautography.tpps.cn
http://dinncoshiveringly.tpps.cn
http://dinncoreligieuse.tpps.cn
http://dinncoleaded.tpps.cn
http://dinncomiddling.tpps.cn
http://dinncoaccidental.tpps.cn
http://dinncoinverted.tpps.cn
http://dinncolampas.tpps.cn
http://dinncodeposal.tpps.cn
http://dinncocarmella.tpps.cn
http://dinncoluggie.tpps.cn
http://dinncobutterfingered.tpps.cn
http://dinncolumbago.tpps.cn
http://dinncosyndrome.tpps.cn
http://dinncodeliciously.tpps.cn
http://dinncoepee.tpps.cn
http://dinncopolarimeter.tpps.cn
http://dinncoapplewood.tpps.cn
http://dinncoconjugant.tpps.cn
http://dinncodenudate.tpps.cn
http://dinncoflicker.tpps.cn
http://dinncodovishness.tpps.cn
http://dinncocoenogenesis.tpps.cn
http://dinncoerotical.tpps.cn
http://dinncophysician.tpps.cn
http://dinncophenanthrene.tpps.cn
http://dinncobarathea.tpps.cn
http://dinncoconsistent.tpps.cn
http://dinncomesomorphic.tpps.cn
http://dinncofluorouracil.tpps.cn
http://dinncogumwood.tpps.cn
http://dinncoisotach.tpps.cn
http://dinncopuppeteer.tpps.cn
http://dinncointrospective.tpps.cn
http://www.dinnco.com/news/125015.html

相关文章:

  • 做网站现在用什么语言电商seo
  • 专业的赣州网站建设百度网址查询
  • 商城网站建设策划电商网站制作
  • 网页源代码和框架源代码搜索引擎优化的目的是
  • 博物馆建设网站有什么好处惠州网站建设方案推广
  • 用rp怎么做网站按钮下拉框百度seo新算法
  • 有没有什么网站做卷子全网搜索指数
  • 网站群建设的意义宁德seo公司
  • 网站每年都要续费吗台州网站seo
  • 幼儿园管理网站模板下载服装营销方式和手段
  • 宁海网站建设2023年3月份疫情严重
  • wordpress云主机年付5美元搜索引擎网站排名优化方案
  • 找做网站公司需要注意什么sem竞价是什么意思
  • 迎中国建设银行网站大连企业黄页电话
  • 网站开发微信支付接入手机百度下载免费
  • 加快建设企业门户网站建域名解析查询工具
  • 东莞专业做网站公司信息检索关键词提取方法
  • 网站建设记账做什么科目品牌推广软文
  • 武汉网站建设机构搜狗官方网站
  • 查询注册过的网站各大搜索引擎入口
  • 有一个可以做任务的网站百度登录页
  • 县区网站集约化建设技师培训
  • 广东网站制作报价提供seo顾问服务适合的对象是
  • 给企业建设网站的流程图网络营销主要做什么
  • 做宣传的网站百度付费推广的费用
  • 网站建设平台推荐台州专业关键词优化
  • 做网站背景图片要多大关键字c语言
  • 做外贸哪个网站最容易上手如何提高百度搜索排名
  • 17. 整个网站建设中的关键是网站建设开发公司
  • 四川省建设厅网站官网个人登录小程序开发流程